How can one get a left floating element with a top position. For instance:
.......................
.......................
.......................
menu 1 ...............
menu 2 ...............
menu 3 ...............
.......................
.......................
I've used dots instead of normal text to make it clearer. Note that the text (dots) flows around the enclosed div (menu).
Here's a starting HTML
<div id="section">
<div id="nav">
<ul><li>menu 1</li><li>menu 2</li><li>menu 3</li></ul>
</div>
................................and so on...
</div>
CSS
div#section {
width: 600px;
float left;
}
div#nav {
float: left;
width: 200px;
top: 180px; /* Doesn't work. See below */
}
The problem is that specifying a position (top:180px) doesn't work since the block is within a flow. Taking it out of the flow using position:relative puts the box at the correct position but it will then overlap the text of the enclosing div.