Skip to content

Instantly share code, notes, and snippets.

@helabenkhalfallah
Created March 24, 2024 11:33
Show Gist options
  • Save helabenkhalfallah/34790f478ba206be343169fda2566b2a to your computer and use it in GitHub Desktop.
Save helabenkhalfallah/34790f478ba206be343169fda2566b2a to your computer and use it in GitHub Desktop.
New viewport units
.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