Last active
July 23, 2023 06:29
-
-
Save tfsojon/9e8b13b3e4ad8399dc3421293af14dec to your computer and use it in GitHub Desktop.
offsetting an html anchor to adjust for fixed header
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[id]::before { | |
content: ''; | |
display: block; | |
height: 75px; | |
margin-top: -75px; | |
visibility: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment