Especifica el tipo del método de posicionamiento que usa un elemento
div{
position: static;
border: 30px dashed red;
}div {
position: relative;
left: 50px;
border: 4px solid green;
}div {
position: fixed;
bottom: 0;
right: 0;
width: 200px;
border: 10px solid black;
}div{
position: absolute;
top: 40px;
width: 400px;
height: 400px;
border: 13px solid green;
}/* atras del primer elemento */
img {
position: absolute;
z-index: -1;
}