JSFiddle - React, Tailwind, and code Playground
HTML
<div id="wrapper">
<div id="div1">The two divs are</div>
<div id="div2">next to each other.</div>
</div>
CSS
#wrapper {
border: 1px solid blue;
}
#div1 {
width:120px;
height:120px;
border: 1px solid red;
}
#div2 {
width:160px;
height:160px;
border: 1px solid green;
}