position: static;
The above box has position: static;
This is the default position, and the div.static
element is placed in the normal flow of document.
left, right, top, bottom, z-index
properties cannot be applied to elements with position static
.
In the above example, the box is placed
div.relative {
position: static; /* No need to mention as it's the default value*/
}