JSFiddle - React, Tailwind, and code Playground

by dodozhang21

HTML

<div id="box_1">
    <div class="orange"></div>
</div>     
<div id="box_2">
    <div class="orange"></div>
</div>     
<div id="box_3">
    <div class="orange"></div>
</div>     
<div id="box_4">
    <div class="orange"></div>
</div>

CSS

#box_1 { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: red;
}
#box_2 { 
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: blue;
}
#box_3 { 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: yellow;
}
#box_4 { 
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: green;
}
.orange { 
    background-color: orange;
    position: absolute; 
    top: 39%; 
    left: 41%; 
    width: 40px; 
    height: 40px; 
}