Full Height Page
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%;
}
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%;
}