Skip to main

Full Height Page

  • css
1 min read

Instead of hacking around min-height: 100vh; there’s a simpler way to have the <body> span full height of the page.

:root {
  display: grid;
  min-height: 100%;
}