JSFiddle - React, Tailwind, and code Playground

by Arnaud

HTML

<div id="boiteGauche">
boite Gauche
</div>

<div id="boiteCentre">
Boite centre
</div>

<div id="boiteDroite">
Boite droite
</div>

CSS

div{
  width:200px;
  float:left;
  background:#cccccc;
  height:100px;
  border:5px solid black;
}

#boiteCentre{
  margin:20px 40px 60px 80px;
  padding:40px;
}