0

非常有用的 SO 问题

"http://stackoverflow.com/questions/288699/get-the-position-of-a-div-span-tag" 

注意查找位置的方法,但如果topleft是 span 元素的“无效属性*”,如何将其定位到像素,exactimento!人们想要的地方?

4

1 回答 1

0

html css使用的定位是:static fixed relative absolute absolute top bottom right and left 如果位置是相对的,绝对的或固定的,则可以使用..例如:

<div id="main">
<span id="pos_fixed"></span>
</div>
then you can have:
#main  {
position:relative;
}
span#pos_fixed
{
position:fixed;
top:30px;
right:5px;
}

但如果它们是静态的,这些将不起作用。你在阅读更多:http ://webdesign.about.com/od/advancedcss/a/aa061307.htm

于 2013-05-25T00:52:42.723 回答