Offset scroll anchor in HTML with Bootstrap 4 fixed navbar
There are a few different ways to solve it, but I think the best way is to put a hidden pseudo element ::before each section. This is a CSS only solution, no JS or jQuery… section:before { height: 54px; content: “”; display:block; } https://www.codeply.com/go/J7ryJWF5fr That will put the space needed to account for the fixed-top … Read more