Last active
March 28, 2026 08:12
-
-
Save Kcko/d72d6e3b62d02ae30cf7ebf282a1c15f to your computer and use it in GitHub Desktop.
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
| /* 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