Offset scroll anchor in HTML with Bootstrap 4 fixed navbar

前端 未结 5 552
孤独总比滥情好
孤独总比滥情好 2020-12-29 06:17

So, I have this single page that consists of a few sections. Users can go to these sections by scrolling themselves or clicking in the navbar (a href with anchor). Due to th

5条回答
  •  伪装坚强ぢ
    2020-12-29 06:56

    Usually when using a sticky header like that you’ll want to find the height of your navbar and offset the entire view accordingly. Something like

    body {
      margin-top:2rem;
    }
    

    Your other option would be to use JavaScript.

提交回复
热议问题