CSS固定底部的方法
2018-07-06 本文已影响14人
前端小兵
1. 使用flexbox布局实现
- HTML:
<body>
<div class="wraper">
<div class="content">
content
</div>
<div class="footer">
footer
</div>
</div>
</body>
- CSS:
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;
}
全局增加一个负值下边距等于底部高度
- html:
<body>
<div class="wrapper">
<div class="content">
content
</div>
<div class="footer">
footer
</div>
</div>
</body>
- CSS:
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;
}