Reputation: 537
I am stuck with CSS grids
I want to make a webpage, that has
top: 15px;
)So the height of the nav and the content should be 100vh
At every scene, the top ~10% is the nav and the rest is the content
Upvotes: 1
Views: 89
Reputation: 537
If any1 watches this in the future
main
display: grid
grid-template-rows: auto // height of nav
grid-auto-rows: 100vh // fullscreen scenes
On sticky nav
main
// all props from above
--nav-position-top: 15px
padding-top: var(--nav-position-top)
nav
position: sticky
top: var(--nav-position-top)
Upvotes: 1