div元素不在页面底部

时间:2017-12-21 17:55:13

标签: javascript jquery html css

我正在我们项目的一个页面上工作。 我想在页面底部放置具有类属性“site-info”的div元素。我尝试{position:absolute; bottom:0}这个元素放在页面的中心。带有名为“模态对话框”的类的div不会获得页面高度和div元素称为“site-info” 在此元素下方,但出现在页面中心。

1 个答案:

答案 0 :(得分:0)

您可以使用css。

.site-info{
position: fixed;
bottom: 0;
width: 100%;}

有一个与此相关的SO资源...... Make div stay at bottom of page's content all the time even when there are scrollbars