Results 1 to 3 of 3

Thread: table columns

  1. #1
    Join Date
    Apr 2006
    Posts
    27
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default table columns

    is there a way to make column 1 and column 2 different sizes but still be the same table? for example column one would be 25% and column 2 would be 75%.

  2. #2
    Join Date
    Apr 2006
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Code:
    <TABLE border="9" cellpadding="9" cellspacing="9" align="center">
    
    <TR>
    <TD width="25%">row 1 width = 25%</TD>
    <TD width="75%">row 1 width = 75%</TD>
    </TR>
    
    <TR>
    <TD width="25%">row 2 width = 25%</TD>
    <TD width="75%">row 2 width = 75%</TD>
    </TR>
    
    </TABLE>

  3. #3
    Join Date
    Apr 2006
    Posts
    27
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thank you!

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
  •