I had a problem. I had an image that I had floating to the left. Right next to it, I had content. Here’s what the code looked like:
1 4
Simple enough, right? It should just work, right? Wrong!
When viewed in a browser, the above code will screw up your list. What do I mean by “screw up” the list? Here’s a screenshot to demonstrate:

Notice, the bullet points will actually overlap with the image. Ugly! I tried adding margins, padding and a bunch of diff things to both the image and the ul element. Nothing fixed it!
I started hunting on Google and I ran into this page: http://www.webmasterworld.com/css/3697078.htm
The fix? Add “overflow: auto;” to the ul style. Simple! I love it!
