内容不够 让footer始终在页面底部的方法

https://blog.mazey.net/1716.html

header{

  height:10px;

  display:sticky;

}

content{

  min-height: calc(100vh - 10px );

  display:flex;

  flex-direction:column;

}

main{

  flex: 1 1 auto

}

footer{

  flex: 0 0 auto

}

原文地址:https://www.cnblogs.com/svvv/p/13993946.html