Re: [css-d] divs outstripping body background-color

2006-06-21 Thread cj
i think what you're trying to do is to contain the float, and the best way i know to do that is body:after { clear: both; content: .; display: block; height: 0; visibility: hidden; } ie, of course, has no idea what that means, which means it needs

Re: [css-d] divs outstripping body background-color

2006-06-21 Thread Tom Lancaster
cj wrote: i think what you're trying to do is to contain the float, and the best way i know to do that is body:after { clear: both; content: .; display: block; height: 0; visibility: hidden; } great. I didn't know about the :after pseudo class. Presumably