JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<div></div>
</div>
CSS
.box {
display:inline-block;
background:red;
}
.box div {
background:green;
width:300px;
height:70px;
margin:5px;
}
<div class="box">
<div></div>
</div>
.box {
display:inline-block;
background:red;
}
.box div {
background:green;
width:300px;
height:70px;
margin:5px;
}