I have a main div with the class .features, inside this div I have two drawers, each of which has a height equal to 160px and a different width. There is a massive addition between the end of two boxes and the main div, as shown in the screenshot below:

The indentation is approximately 5 pixels - I would like to remove this add-on, if possible. I tried to add margin: 0; and indentation: 0; to the main div, as well as to the two inner boxes, but this did not work.
Here is the html for this section of the page:
<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; } .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; }
source share