My goal is to have the page fit perfectly within the viewport, but despite using the body properties below, I am still seeing a vertical scrollbar.
body {
display: grid;
grid-template: .8fr 4fr / 1fr 4fr;
max-height: 100vh;
margin: 0;
}
I'm wondering if there might be another CSS property that is causing this issue? You can view the codepen at https://codepen.io/dkxp/pen/yLRVQNM. Thank you!