<div class="static">Static</div>
<div class="relative">Relative</div>
div {
border: solid orange 2px;
background-color: bisque;
width: 180px;
height: 100px;
}
.static {
position: static;
}
.relative {
position: relative;
top: 10px;
left: 20px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.