JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>
<div></div>
<div></div>

CSS

body {
    background: grey;
}

div{
    width:500px;
    height:100px;
    background:blue;
    margin: 0 auto;
}

div:first-child{
    background:white;
}

div:last-child{
    background:red;
}