Bootstrap - navbar-fixed-top covers content

后端 未结 6 1566
醉酒成梦
醉酒成梦 2021-02-12 14:36

I have a question about navbar-fixed-top. Well, I have a simple problem with it. My fixed navbar covers content, for example in \"About us\" page, it covers row with \"About us\

6条回答
  •  后悔当初
    2021-02-12 15:13

    I would do this:

    // add appropriate media query if required to target mobile nav only
    .nav { overflow-y: hidden !important }
    

    This should make sure the nav block doesn't stretch downpage and covers the page content.

提交回复
热议问题