img {
display: block;
}
<section>
<div></div>
<div></div>
<div></div>
</section>
div {
float: left;
width: 32%;
margin-right: 2%
}
div:nth-of-type(3n) {
margin-right: 0;
}
section::after {
content: "";
display: block;
clear: both;
}