PDA

View Full Version : Making weird tables...



CannonBallGuy
07-21-2004, 07:52 AM
I want a table with 2 columns. The first column just as it is then the second column to be split into 2 rows.
Like this:

_______________
| | |
| |_______|
| | |
|_______|_______|

Well... :oops: Thats Kinda it.... lol

I don't want to use nested tables unless It's the only way.
In fact. If this can be done in div tags... then all the better!

sec
07-21-2004, 08:56 AM
thats easy..iwell at least i think this is what you mean

[code:1:84135271f3]<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td rowspan="2">content</td>
<td>content</td>
</tr>
<tr>
<td>content/td>
</tr>
</table>[/code:1:84135271f3]

that wil give a table with two columns, the second colum in than split into two rows.

You can replace the word 'content' with whatever you want :)

CannonBallGuy
07-21-2004, 10:31 AM
Ah! Cheers... I was close... except I had rowheight=2, not rowspan... lol. Thanks.

sec
07-21-2004, 12:08 PM
hehe, no prob