.content
如果是,如何设置页脚底部absolute
?
我试过这个和另一个使用相同的方法添加填充底部....但是如果 .content 设置为绝对位置和顶部则不起作用
ps 我不想设置页脚固定...
谢谢。
.head{
position: absolute;
left: 0;
top: 40px;
height: 160px;
}
.content{
position: absolute;
top: 200px;
}
.footer{
position: absolute;
bottom: 0;
}
<body>
<div class="head"></div>
<div class="content"></div>
<div class="footer"></div>
</body>