DEV Community

Discussion on: Stop Using Fixed Headers and Start Using Sticky Ones

Collapse
 
marklchaves profile image
mark l chaves

Got it. It's also my (mis)understanding of how sticky is supposed to work then. I appreciate that.

BTW, I use this snippet from SE to automatically compensate for fixed headers when using anchors.

:target::before {
    content: "";
    display: block;
    height: 6rem; 
    margin: -6rem 0 0; 
}

Thanks again!

Thread Thread
 
luisaugusto profile image
Luis Augusto

Awesome thanks for that, either way works!