JSFiddle - React, Tailwind, and code Playground
by Ian Campbell
HTML
<div>
<div class="yellow"></div>
<div class="red"></div>
<div class="blue"></div>
</div>
CSS
.yellow {
background-color: yellow;
width: 400px;
height: 200px;
}
.red {
background-color: red;
width: 400px;
height: 200px;
}
.blue {
background-color: blue;
width: 400px;
height: 200px;
}