>
>
> Hi,
>
> Know it's difficult, but this is not on the web, and even though
> only very
> small not fair to ask others to load it in to their browser.
>
> 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.
>
> I've added a clearing div and it just sits on top of that. All height and
> width declarations are in % , everything else works just fine.
>
> Any help would be gratefully appreciated...
>
> TIA
>
> David G)

Hi David

I suspect that it may have something to do with your heights. Following
works fine for me:

<html>
<head>
        <title>Untitled</title>
        <style = "text/css">
        #container
{background:yellow;width:100%;overflow:hidden;text-align:center;height:500px
}
        #content {float:left;width:90%;margin:0 
auto;height:50%;background:blue;}
        #right {float:right;width:25%;background:red;height:20%}
        </style>
</head>

<body>
<div id="container">
<div id="content">
<div id="right">

</div>
</div>

</div>

</body>
</html>
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: 22/05/2007
15:49

______________________________________________________________________
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/

Reply via email to