I would like to have this
.--------------------------------------.
| Left                           Right |
'--------------------------------------'
One solution (with Bootstrap) is:
<div class="row">
    <div class="col ">
        Left
    </div>
    <div class="col text-right">
        Right
    </div>
</div>
Is there a simpler way such as this?
<div>
Left <span class="hfill">Right</span>
</div>
 
    