top nav bar blocking top content of the page

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

I have this Twitter Bootstrap code

  
相关标签:
19条回答
  • 2020-11-28 01:40

    Add to your JS:

    jQuery(document).ready(function($) {
      $("body").css({
        'padding-top': $(".navbar").outerHeight() + 'px'
      })
    });
    
    0 讨论(0)
提交回复
热议问题