I have a .HTML file in which I cannot change, under no circumstances.
I have to style the webpage which makes the Header DIV at the top of the page (100% width), Navigation DIV (25% width) appear down the left hand side BELOW the Header DIV, with the Sales DIV (75% width), appear to the right-hand side of the Navigation DIV, with the Products DIV (100% width) below the Sales DIV.
With the footer DIV at the very bottom below all of the other DIV's on the page, 100% width.
<body>
<div id="wrapper">
<div id="nav"></div>
<div id="header"></div>
<div id="sales"></div>
<div id="products"></div>
<div id="footer"></div>
</div>
</body>
Is it possible to do this without changing the logical order of the HTML DIV's and only using CSS positioning, floats, etc?