I have a document that looks like
<div id="content">
<p> blah </p>
</div>
<div id="menu">
<p> blah2 </p>
</div>
<div id="footer">
<p> Copyright </p>
</div>
The content div is after the menu div, but is it possible to have the layout displayed like so:
-------------------
| Menu | Content |
| | |
| | |
-------------------
| Footer |
-------------------
How do you swap their order? And I'd rather not use absolute positioning.