Table problem

I’m really struggling with a table i want to create

the 1st column will have 5 rows,
the 2nd column will be 1 row with equal height of the left 5 rows,
and the 3rd column will have 4 rows, with total height of the other two columns.

please help me out…

thnx in advance

Is this table to hold tabular data? By the logic presented, that seems unlikely. I don’t think you can achieve your third column with equally spaced rows, which is what leads me to the conclusion.

You can have a third column with 4 rows, but would need to decide which one would be the height of two rows from the first column. Failing that, you would need to nest a table in the third column to achieve the layout, but you would be entering realms where CSS should certainly be used instead unless you are coding HTML email…

thnx 4 reply,

if that is not possible,
at least show me the way to do 5-1-5 rows…

thnx again

That one is easy :slight_smile:

<table>
<tr><td></td>
    <td rowspan="5"></td>
    <td></td></tr>
<tr><td></td>
    <td></td></tr>
<tr><td></td>
    <td></td></tr>
<tr><td></td>
    <td></td></tr>
<tr><td></td>
    <td></td></tr>
</table>

If you wanted to make one of the cells in the final column double-height, you would add rowspan="2" to the <td>, and then leave out the second <td></td> from the next row.

luv u “Stevie D”,

thanks A LOT!!!