Bootstrap - navbar-fixed-top covers content

后端 未结 6 1463
醉酒成梦
醉酒成梦 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:26

    the response is in the page:

    Twitter Bootstrap - top nav bar blocking top content of the page

    Add to your CSS:

    body { 
        padding-top: 65px; 
    }
    

    or a more complex solution but responsive, if your navbar change the height( ex in tablets appears in more to 60px; or is different ) use a mixed solution with css and javascript

    CSS:

        #godown{
       height: 60px;
    }
    

    HTML (resumen)

    
    
    
    
    
    
    ...

    JAVASCRIPT:

    
    

提交回复
热议问题