Making weird tables...

CannonBallGuyCannonBallGuy ModeratorShared Hoster
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!

Comments

  • PythonPython Forum Leader The Royal RAM
    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 :)

    The Royal Ram

  • CannonBallGuyCannonBallGuy Moderator Shared Hoster
    Ah! Cheers... I was close... except I had rowheight=2, not rowspan... lol. Thanks.
  • PythonPython Forum Leader The Royal RAM
    hehe, no prob

    The Royal Ram

Sign In or Register to comment.