top nav bar blocking top content of the page

前端 未结 19 1615
孤城傲影
孤城傲影 2020-11-28 00:48

I have this Twitter Bootstrap code

  
19条回答
  •  鱼传尺愫
    2020-11-28 01:21

    you can set margin based on screen resolution

    @media screen and (min-width:768px) and (max-width:991px) {
    body {
        margin-top:100px;
    }
    
    @media screen and (min-width:992px) and (max-width:1199px) {
      body {
        margin-top:50px;
      }
    }
    
    body{
      padding-top: 10%;
    }
    
    #nav{
       position: fixed;
       background-color: #8b0000;
       width: 100%;
       top:0;
    }
    

提交回复
热议问题