Really simple question time:
I have two divs.
<div id="1">
<p>hello</p>
</div>
<div id="2">
<p>goodbye</p>
</div>
#1 is floated to the left. #2 is floated to the left. what can I do, short of changing the HTML to push #2 to the left of #1? I am aware of a solve using absolute and relative positioning but it would be super if there were a way to do it a more ‘dynamic’ way (like float)

Use float:right and an outside container
CSS
HTML: