JSFiddle - React, Tailwind, and code Playground

by artwl

HTML

<div class="rel">
    <span>relative</span>
    <div class="abs">absolute</div>
</div>
<div class="fix">fixed</div>

CSS

div{
    color:#FFF;
    font-size:20px;
}
.abs,.fix{
    width:100px;
    height:100px;
    background-color:#F60;
}
.rel{
    position:relative;
    width:60%;
    height:300px;
    background-color:#258258;
}
.abs{
    position:absolute;
    right:100px;
    top:50px;
}
.fix{
    position:fixed;
    right:100px;
    top:50px;
}