JSFiddle - React, Tailwind, and code Playground
HTML
<section>
</section>
<section>
</section>
<section>
</section>
<section>
</section>
CSS
section {
min-height: 200px;
}
section:nth-child(odd) {
background: #F5E9DE;
}
section:nth-child(even) {
background: #fefcfb;
}
section:nth-last-child(2) {
background: #B97459;
}
section:last-child {
background: #38292c;
}