JSFiddle - React, Tailwind, and code Playground

by NicoO

HTML

<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>

CSS

#div1 {
    float:left;
    width:400px;
    height:200px;
    background-color: gray;
}
#div2 {
      float:right;
    width:400px;
    height:200px;
    background-color: green;
    
}
#div3 {
  margin-left: 400px;
    margin-right: 400px;
    width:auto;
    height:200px;
    background-color: silver;
}