JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outside">
<div class="inside"></div>
<div class="inside"></div>
<div class="inside"></div>
<div class="inside"></div>
</div>
CSS
html, body {
margin:0;
width:100%;
overflow-x:hidden;
}
.outside {
width:100.5%;
height: 500px;
overflow:hidden;
background: #009900;
}
.inside {
width:25%;
height: 299px;
float: left;
background-color: #990000;
}