实现代码如下:
<divclass="wrap">
<divclass="img"></div>
<divclass="notice">1</div>
</div>
<divclass="wrap">
<divclass="img"></div>
<divclass="notice">12</div>
</div>
<divclass="wrap">
<divclass="img"></div>
<divclass="notice">13</div>
</div>
<style>
.wrap{
width:50px
margin-bottom:10px
position:relative
}
.img{
width:50px
height:50px
border:1pxsolid#000
}
.notice{
width:20px
height:20px
line-height:20px
font-size:10px
color:#fff
text-align:center
background-color:#f00
border-radius:50%
position:absolute
right:-10px
top:-10px
}
</style>
扩展资料:注意事项
主要用到position定位,CSSposition属性用于指定一个元素在文档中的定位方式。top、right、bottom、left 属性则决定了该元素的最终位置。
static是position的默认值。
<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>CSS-position-static</title>
<linkrel="stylesheet"href="https://cdn.bootcss.com/normalize/8.0.0/normalize.css">
<style>
.container{
background-color:#868686
width:100%
height:300px
}
.content{
background-color:yellow
width:100px
height:100px
position:static
left:10px/*这个left没有起作用*/
}
</style>
</head>
<body>
<divclass="container">
<divclass="content">
</div>
</div>
</body>
</html>
1. 首先,必須先抓到該 HTML 標籤在畫面中「左上角」的位置。 抓到HTML 物件的絕對位址方法可以用以下 JavaScript function 取得: function findPosX(obj){var curLeft = 0if (obj.offsetParent) {do {curLeft += obj.offsetLeft
} while (obj = obj.offsetParent)}else if (obj.x) {
curLeft += obj.x}return curLeft
} function findPosY(obj){var curTop = 0
if (obj.offsetParent) {do {curTop += obj.offsetTop
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)