In the following code the ul is not shown. It's like the li's need to be cleared, but I can't do that because I have other floats that it would mess with. Why doesn't the ul enclose its li's and is there a way to make it work? (I've only tested it in Firefox)
<style>
li { float: left; }
ul { background: #F00; }
</style>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>