CSS: Equidistant
Flexbox Justification
it’s the best solution
<div class="container">
<div style="float: left;"></div>
<div></div>
<div></div>
<div style="float: right; margin-right:10px;"></div>
</div>
.container {
display: flex;
justify-content: space-between;
}