<h1>CSS Position: Static</h1>
<div class="box static"></div>
div.box {
    height: 100px;
    width: 100px;
    border: 1px solid lightskyblue;
    text-align: center;
    border-radius: 10px;
}
div.static {
    left: 100px;
    position: static;
    background-color: lightgoldenrodyellow;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.