我在我的页面中间使用此代码:
<div id="last" style="height:10px; top:50px; background-color:black;"></div>
,网址如下:
http://www.example.com/page.php#last
#last
div的顶部显示在页面顶部,但它应该50px
降低。
有没有人有任何想法?
答案 0 :(得分:2)
您需要指定position: absolute
。
<div id="last" style="height:10px; position: absolute; top:50px; background-color:black;"></div>