1. 使用flexbox布局实现
<body>
<div class="wraper">
<div class="content">
content
</div>
<div class="footer">
footer
</div>
</div>
</body>
html,body {
height: 100%;
}
.wraper {
min-height: 100%;
display: flex;
flex-direction: column;
}
.wraper .content {
flex: 1;
}
.wraper .footer {
width: 300px;
height: 50px;
line-height: 50px;
text-align: center;
margin: 0 auto;
border:1px solid #000;
}
全局增加一个负值下边距等于底部高度
<body>
<div class="wrapper">
<div class="content">
content
</div>
<div class="footer">
footer
</div>
</div>
</body>
html,body {
height: 100%;
}
.wrapper {
height: 100%;
}
.wrapper .content {
min-height: 100%;
margin-bottom: -50px;
}
.wrapper .footer {
width: 300px;
height: 50px;
line-height: 50px;
text-align: center;
background: #000;
color:#fff;
margin: 0 auto;
}
网友评论