I want to make my and tags be the entire height of the viewport if the page isn\'t tall enough to warrant scrolling, or t
It sounds like your goal is for the body to
if that's the case the following snippet should help
/* this looks like it should work
html, body{
min-height: 100%;
}
but this ↓ does the trick */
html, body{
padding: 0;
margin: 0;
}
html{
height: 100%;
}
body{
min-height: 100%;
}