<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;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.