My current setup involves setting <body>
to be absolutely positioned in order to fill the entire viewport without needing to specify a height:
body {
width: 100%;
margin: 0;
padding: 0;
position: absolute;
top:0; right:0; bottom:0; left:0;
min-height: 500px;
}
I'm curious about whether the elements I place within the body will behave differently due to this absolute positioning, or if they will flow as they would if the body were not absolutely positioned.