Results 1 to 5 of 5

Thread: How do I create a table like this?

  1. #1
    Join Date
    Jan 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Arrow How do I create a table like this?

    How do I create a table like the one in the attachment with html?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Code:
    <table border="1" cellpadding="5" cellspacing="5">
     <tr>
       <td align="center" valign="middle" rowspan="2">Hi</td>
       <td align="center" valign="middle">Ola</td>
     </tr>
     <tr>
       <td align="center" valign="middle">Salut</td>
     </tr>
    </table>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Code:
    <table cellspacing="0" cellpadding="0" width="200" border="1">
    <tr>
    <td rowspan="2" width="100">hi</td>
    <td width="100">Ola</td>
    </tr>
    <tr><td width="100">Salut</td></tr>
    </table>

  4. #4
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

  5. #5
    Join Date
    Jan 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks a lot for the help mates!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •