A CSS property you might not know

spo0q

spO0q

Posted on December 9, 2020

A CSS property you might not know

Today I learned the existence of scroll-margin, which I've missed from the beginning.

Browser support is not ideal (especially ios and also old browsers) but decent.

Source: caniuse

If you have any anchor in your page, it's nice to set something like:

.myanchor {
    scroll-margin-top: 73px;
}
Enter fullscreen mode Exit fullscreen mode

This way, the top screen does not eat your anchor title ^^

💖 💪 🙅 🚩
spo0q
spO0q

Posted on December 9, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related