JSFiddle - React, Tailwind, and code Playground
by Arnaud
HTML
<div class="boite">
boite
</div>
<div class="boite boite2">
boite
</div>
<div class="boite">
boite
</div>
CSS
.boite{
width:100px;
display:inline-block;
margin :40px 0;
background:#eee;
text-align:center;
}
.boite1{
}
.boite2{
padding:20px;
margin:20px;
box-sizing:border-box;
border:5px solid black
}