JSFiddle - React, Tailwind, and code Playground
by Laxmikant Dange
HTML
<div class="features">
<div class="list-items"></div>
<div class="screenshot-box"></div>
</div>
CSS
.features {
width: 980px;
margin: auto;
margin-top: 25px;
background-color: lightblue;
font-size:0; /*Just make font size as 0*/
}
.list-items {
width: 280px;
height: 160px;
display: inline-block;
background-color: red;
}
.screenshot-box {
width: 583px;
height: 160px;
float: right;
padding-bottom: 0;
display: inline-block;
background-color: red;
}