JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper">
     <div class="top-tab">
         <div class="top-tab-box"></div>
         <div class="top-tab-box"></div>
         <div class="top-tab-box"></div>
         <div class="clear"></div>
        </div>
    </div>

<style>
.top-tab-box
{
   width: 200px;
   height: 200px;
   background: #000;
   float: left;
   margin: 10px;

}
#wrapper div div:nth-last-child(2){
   background: red;
}
</style>