JSFiddle - React, Tailwind, and code Playground

by Daffa Aditya

HTML

<div class="fixed">Ini Fixed</div>
<div class="wrap"></div>

CSS

.fixed {
    position: fixed;
    top: 30px;
    left: 5px;
    color: #FF0000;
}
.wrap {
     background: #000;
     width: 90%;
     height: 700px;
     margin: 30px;
}