footer 的实现方法

当内容不超过一屏时,footer在屏幕底部,内容超过一屏时,和主体内容有固定距离。也就是内容少的时候吸底,内容多的时候文档流排版。我尝试了几种实现方法。
footer 的实现方法_第1张图片

1.flex

  • 思路:给body设置flex,然后flex的方向设置column,主体内容flex:1于是会自适应高度。
...
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;
}    

2.主体设置margin-bottom为负数

...
html,body{
	height:100%
}
.content{
	min-height: 100%;
    margin-bottom: -50px;
}
.footer,.flag{
	height:50px
}

你可能感兴趣的:(前端杂记)