Created
March 24, 2024 11:33
-
-
Save helabenkhalfallah/34790f478ba206be343169fda2566b2a to your computer and use it in GitHub Desktop.
New viewport units
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
.hero-image { | |
height: 100dvh; /* Height will adapt to the address bar's appearance */ | |
} | |
.sticky-footer { | |
height: 100svh; /* Remains visible and consistent */ | |
} | |
.fullscreen-gallery { | |
height: 100lvh; /* Utilizes the entire screen, no UI */ | |
} | |
.responsive-modal { | |
height: 100dvh; /* Adjusts to dynamic viewport changes */ | |
} | |
.modal { | |
height: 100vh; /* Fallback */ | |
height: 100dvh; /* Will override if supported */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment