底部footer挡住上面内容的bug

当设置底部footer的样式为:

.footer{

  position: fixed;

  height: 49px;

  bottom: 0;

  background: #fff;

}

这样会挡住上面的内容,修改如下:

给body加个样式:

body{

  padding-bottom: 49px; //和设置fixed的高度一致就好

}

posted @ 2019-08-06 10:26  指尖流年1218  阅读(455)  评论(0编辑  收藏  举报