Results 1 to 3 of 3

Thread: HTML Table problem... this has plagued me for too long...

  1. #1

    Thread Starter
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205

    HTML Table problem... this has plagued me for too long...

    I am having a prob with HTML tables.

    I want a table to be split into cells like:
    [Code]
    ___________
    |_____|____|
    |__|__|__|__|
    |_____|____|
    |_____|____|


    So a row of 2 cols, then 4 cols, then 2 cols, then 2 cols.

    Simple enough, but when I define this table, I have a problem where the row of 4 cols goes wider than the rows of 2 cols.

    See: http://www.endeavour.net.au/join.asp to see what I mean.


    This didn't used to happen, but seems to happen in all my tables these days... what is the problem?
    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

  2. #2
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    Code:
    <table width="75%>
      <tr>
        <td colspan="2"></td>
        <td colspan="2"></td>
      </tr>
      <tr><td></td> <td></td> <td></td> <td></td> </tr>
      <tr>
        <td colspan="2"></td>
        <td colspan="2"></td>
      </tr>
      <tr>
        <td colspan="2"></td>
        <td colspan="2"></td>
      </tr>
    </table>
    I didn't really look at the page you provided, but that should be the basics of it.

    Last edited by crptcblade; Nov 14th, 2001 at 09:09 PM.
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  3. #3

    Thread Starter
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205
    That's the one.

    Cheers!

    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

Posting Permissions

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



Click Here to Expand Forum to Full Width