Skip to content

Instantly share code, notes, and snippets.

@ankedsgn
Created March 24, 2020 10:23
Show Gist options
  • Save ankedsgn/57c37184834ca4668af9cf31f1019995 to your computer and use it in GitHub Desktop.
Save ankedsgn/57c37184834ca4668af9cf31f1019995 to your computer and use it in GitHub Desktop.
Scroll to anchors with fixed headers
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