JSFiddle - React, Tailwind, and code Playground
by aslancods
HTML
<div class="wrap" >
<div class="box" >
</div>
</div>
CSS
.wrap {
background-color: red;
}
.box {
width: 250px;
min-height: 70px;
background-color: yellow;
margin: 20px auto 30px;
}
/* margin left & right should be auto, width must be fixed and it should be a block element or set display block */