答案 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;
}