sticky bootstrap footer overlaping content of page in responsive

邮差的信 提交于 2019-12-13 17:19:21

问题


.....

    <div class="container">
    ......
    </div>
    </div> <!-- End -Wrap -->
    <div id="footer">
        <div class="container">
                ....
          </div>



html {
  position: relative;
  min-height: 100%;
}
body {
  position: relative;

}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

[![IN responsive (overlapping)][1]][1] [![in web page][2]][2]

  [1]: https://i.stack.imgur.com/itr4Y.png
  [2]: https://i.stac

k.imgur.com/8OXpa.png

I have add screenshots.It is working in web pages but overlapping is responsive.Is it important to give the height of the footer.

来源:https://stackoverflow.com/questions/44451425/sticky-bootstrap-footer-overlaping-content-of-page-in-responsive

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!