Search code examples
htmlalignment

What is the best way to left align and right align two div tags?


What is the best way to right align and left align two div tags on a web page horizontally next to each other? I would like an elegant solution to do this if possible.


Solution

  • <div style="float: left;">Left Div</div>
    <div style="float: right;">Right Div</div>