Hi me_patrick,
i) Known CSS issue. The fix is to add
height: 1%;
overflow: hidden;
to #content
ii) It looks an awful lot like IE's infamous double float margin bug, but IE 8 shouldn't be affected. In any event, try changing div.figure to :
div.figure {
width: 100px;
float:right;
margin-top: 0px;
margin-right: 10px;
margin-bottom: 0px;
display: inline;
}
Main Topics
Browse All Topics





by: KravimirPosted on 2009-11-04 at 22:38:04ID: 25747197
1) Floated elements don't make their parent elements expand in height by default. In this case, I'd float #content and give it a width. Recommended reading: http://www.dynamicsitesolu tions.com/ css/layout -technique s/ #clearin g_floats
2) That's just because of how the text is wrapping. You could make the font-size for those paragraphs a little smaller to fix that.
Select allOpen in new window