JSFiddle - React, Tailwind, and code Playground

by ianwong

HTML

<div id="box1"></div>
<div id="box2"></div>

CSS

#box1 {
    position:fixed;
    width:100px;
    height:100px;
    background:red;
    left:10px;
    top:100px;
}
#box2 {
    position:fixed;
    width:100px;
    height:100px;
    background:yellow;
    top:200px;
    margin-left:10%;
}