I have set <body> to be absolutely positioned so that it takes up the entire viewport without having 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 want to know whether the elements that I layout within the body will have any “layout” (IE speak) attached to them or will they flow normally as if the body wasn’t positioned absolutely?
The position of the body will not change anything.