JSFiddle - React, Tailwind, and code Playground

by infous

HTML

<div id="one">

</div>

<div id="two">

</div>

CSS

body { margin: 0; }

#one {
  background: blue;
  border: 5px solid orange;
  width: 100px;
  height: 100px;
  
  margin: 10px;
}

#two {
  background: red;
  border: 5px solid yellow;
  width: 150px;
  height: 150px;
  
  margin: 20px;
}