>>I have a content div floated left, which contains another div floated right. The inner div will not move of the bottom of the containing div.<<
The one that's floated right should come first in the source code, I think. So if your code looks like so: <div class="left"> blah blah text here <div class="right"> right floated box here </div> </div> Then however long your text stuff is, it'll push the right floated thing down. If you source it like so: <div class="left"> <div class="right"> right floated box here </div> blah blah text here </div> Then no matter how much text you have, the "right" div will be at the top of it's container, and the text will wrap around it. ~Shelly ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
