使用div id将页面滚动到某个点

时间:2014-01-29 22:22:12

标签: html css

我在我的页面中间使用此代码:

<div id="last" style="height:10px; top:50px; background-color:black;"></div>

,网址如下:

http://www.example.com/page.php#last

#last div的顶部显示在页面顶部,但它应该50px降低。

有没有人有任何想法?

1 个答案:

答案 0 :(得分:2)

您需要指定position: absolute

<div id="last" style="height:10px; position: absolute; top:50px; background-color:black;"></div>