show/hide this revision's text 2 added 132 characters in body

You won't get equal heights for the 2 left DIVs combined and the right DIV. Unless ofcourse you specify those, or if the contents produce the same heights... But this shouldn't be a problem i think?

Update

<style type="text/css">
    #container {float:right;position:relative;}
    #left    {float:left;              width:75%;} /** ? don't know if you need widths? **/
    float:left;}
    #left_1  {float:left;}
    #left_2  {float:left;clear:left;   width:75%;}
    clear:left;float:left;}
    #right   {float:right;             width:25%;}
    float:right;}
    #bottom  {float:left;clear:both;}
</style>

<div id="container">
    <div id="left"></div>
>
        <div id="left_1">left 1</div>
        <div id="left_2"></div>
>left 2</div>
    </div>

    <div id="right"></div>
>right</div>

    <div id="bottom"></div>
>bottom</div>
</div>
show/hide this revision's text 1

You won't get equal heights for the 2 left DIVs combined and the right DIV. Unless ofcourse you specify those, or if the contents produce the same heights... But this shouldn't be a problem i think?

<style type="text/css">
    #left    {float:left;              width:75%;} /** ? don't know if you need widths? **/
    #left_2  {float:left;clear:left;   width:75%;}
    #right   {float:right;             width:25%;}
    #bottom  {float:left;clear:both;}
</style>
<div id="left"></div>
<div id="left_2"></div>
<div id="right"></div>
<div id="bottom"></div>