Created
March 24, 2020 10:23
-
-
Save ankedsgn/57c37184834ca4668af9cf31f1019995 to your computer and use it in GitHub Desktop.
Scroll to anchors with fixed headers
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
h2 a[name] { // all anchors | |
scroll-margin-top: 70px; | |
@supports (-webkit-overflow-scrolling: touch) { // bc ios safari is not playing along | |
/* CSS specific to iOS devices only */ | |
padding-top: 70px; | |
margin-top: -70px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment