Its static. proof of its static positioning.
HTML:
<div class="position"> <div> <div style="height:100px;"> </div> <div class="noposition"> <div>
CSS:
div.position { width:100px; height:100px; background:red; left:10px; top:100px; position:static; } div.noposition{ width:100px; height:100px; background:blue; left:10px; top:100px; }
This shows that two divs with separate classes, one without any positioning and one with a static position, positions the Div as static.
Nitesh May 14 '13 at 11:21 2013-05-14 11:21
source share