Swfloting for top position

not knowing the height of either div and knowing that both divs are 100% width of their container, is it possible to use FLOAT to put a div that comes second in the code so that it displays ABOVE of the the one that comes before it?

for example:
<div id=“page”
<div id=“brand”>
<h1>Logo</h1>
<p>branding statement of indeterminate length</p>
</div>
<div id=“nav”>
<ul>
<li>any number of</li>
<li>navigation items</li>
</ul>
</div>
</div>

is it possible top use floats to display NAV above BRAND?

all advice is greatly appreciated

Assuming you don’t know the height of EITHER then no it wouldn’t be possible unless you used Javascript to detect the height and mess with absoltue position trickery to get them in place :).

Edit:

This is my 9,999th post! :smiley: