Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active March 28, 2026 08:12
Show Gist options
  • Select an option

  • Save Kcko/d72d6e3b62d02ae30cf7ebf282a1c15f to your computer and use it in GitHub Desktop.

Select an option

Save Kcko/d72d6e3b62d02ae30cf7ebf282a1c15f to your computer and use it in GitHub Desktop.
/* 1 */
html {
scroll-behavior: smooth;
/* Set this to the height of your header */
scroll-padding-top: 80px;
}
/* 2 */
.anchor-section::before {
content: "";
display: block;
/* Negative margin pulls the element back up */
margin-top: -100px;
/* Height creates the "blocker" space */
height: 100px;
visibility: hidden;
pointer-events: none;
}
/* 3 */
section:target {
border-top: 80px solid transparent;
margin-top: -80px;
background-clip: padding-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment