position: absolute;
The above box has position: absolute;
The div.absolute
element is taken outof the normal flow of document.
Then the element is placed in it's original position unless values of top, right, left, bottom
are specified.
In the above example, the box is placed
div.absolute {
position: absolute;
z-index: -1;
}
NOTE: See how the other elements ignore the blue box, and behave as if it is not present.