JSFiddle - React, Tailwind, and code Playground

by Wentz Wu

HTML

<div id="container">
    <div id="parent">
        <div id="box"></div>
    </div>
</div>

CSS

div {
    border: 1px solid red;
}
#container {
    position: relative;
    width: 100%;
    height: 300px;
    
}
#parent {
    position: relative;
    width: 200px;
    height: 200px;
}
#box {
    width: 100px;
    height:100px;
    float: right;
}