How do I get a floated element to overlap a table? It overlaps other divs just fine, but the table seems to force a clear.
In my example, the div is overlapped (what I want) but the table below that clears past the floated element (which I don't.)
Example here: http://cssdesk.com/9rZVs. (IE seems to fry this so I'll paste it here too.)
HTML:
<div>
<span style="float:right;width:40%;">
content content content content content
content content content content content
content content content content content
</span>
content content content content...
</div>
<div>
content content content content content
content content content...
</div>
<table ><tr><td>1</td></tr></table>
CSS:
table {
width:300px;
border: 1px solid black;
}
span {
border:2px solid black;
background-color: #ddd;
margin: 2px solid gray;
}
div {
border:2px solid black;
background-color: #fff;
margin: 2px solid gray;
width: 200px;
padding: 10px;
}