<div class="box"> <div id="l">One </div> <div id="f">Two </div> <div id="e">Three </div> </div>
.box { display: flex; justify-content: space-between; } #f{ border: 1px solid red; width: 290px; } #l{ border: 1px solid blue; width: 290px; } #e{ border: 1px solid blue; width: 290px; }