Put div below navigation bar and don't overlap content

前端 未结 5 1834
Happy的楠姐
Happy的楠姐 2021-02-04 10:44

My issue is that I fixed a navigation bar at the top of my webpage and it includes both side margins and top one. Below this navigation bar, I want to set an scrollable containe

5条回答
  •  梦如初夏
    2021-02-04 11:08

    From the Bootstrap documentation:

    Body padding required The fixed navbar will overlay your other content, unless you add padding to the top of the . Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.

    So just add your body padding:

    body
    {
        padding-top: 70px;
    }
    

    If you don't want your body to scroll behind the navbar, change your CSS to use padding instead of margin:

    .my-own-style {
        padding-left: 37px;
        padding-top: 37px;
    }
    

提交回复
热议问题