JSFiddle - React, Tailwind, and code Playground

by Daffa Aditya

HTML

<div class="wrap">
    <div class="ketiga">Posisi Absolute</div>
</div>

CSS

.wrap{
    width:100%;
    background:#000;
    height:400px;
    position:static;
}
.ketiga {
    position:absolute;
    background:red;
    width:auto;
    bottom:0px;
    left:15px;
    padding:7px;
}