Well it's not that I want. I need to do something like this:
*********************************************************
<table>
 <tr>
  <td>Element1</td>
  <td>Element2</td>
 </tr>
 <tr>
  <td colspan="2">Element below others</td>
 </tr>
</table>
*********************************************************
I do this with DIV:
*********************************************************
<div id="divLeft" class="float left">Element1</div>
<div id="divRight" class="float right">Element2</div>
<div id="divBelow">Element below others</div>
*********************************************************
With this style:
*********************************************************
.float.left {
        float: left;
        clear: both;
}
.float.right {
        float: right;
}
*********************************************************
But it not works as I need. Understand now what I need to do? The DIV
with ID "divBelow" is below DIV ID "divRight" and not both. It's
something like this

divRight divLeft
   divBelow

Cheers
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to