Div位于屏幕底部

时间:2015-01-17 23:58:42

标签: javascript jquery css

如何在屏幕底部而不是页面中放置div?

但我不想使用position:fixed,因为我想要一次向下滚动,div会像其他元素一样上升。

喜欢此web site

中的div

2 个答案:

答案 0 :(得分:2)

您可以使用vh unit执行此操作。

body, html {
  height: 1000px;
  margin: 0;
}
div {
  position: relative;
  width: 100px;
  height: 100px;
  background: tan;
  top: calc(100vh - 100px);
}
<div></div>

答案 1 :(得分:1)

尝试将此css添加到您的ID或类中:

div {   
position: absolute; 
bottom: 0; 
}