当内容不超过一屏时,footer在屏幕底部,内容超过一屏时,和主体内容有固定距离。也就是内容少的时候吸底,内容多的时候文档流排版。我尝试了几种实现方法。
...
footer
body {
display: flex;
-webkit-box-orient: vertical;
flex-direction: column;
}
.content {
margin-bottom: 20px;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
.footer {
height: 100px;
}
...
footer
html,body{
height:100%
}
.content{
min-height: 100%;
margin-bottom: -50px;
}
.footer,.flag{
height:50px
}