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

Daniel Kivatinos picture Daniel Kivatinos · Apr 8, 2009 · Viewed 198.8k times · Source

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.

Answer

Marcel Guzman picture Marcel Guzman · Apr 8, 2009
<div style="float: left;">Left Div</div>
<div style="float: right;">Right Div</div>