3 tables

Discussion in 'HTML & Website Design' started by bobby9101, Aug 31, 2005.

  1. #1
    Is it possible to use three tables?
    I attached my web page that i am having problems with. if you open it up in a browser you will see that the middle table is above the others, i would like all three in line side by side by side
    anyone care to tell me how to do this?
     

    Attached Files:

    bobby9101, Aug 31, 2005 IP
  2. hasbehas

    hasbehas Well-Known Member

    Messages:
    726
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    190
    #2
    one table devided into three cells. a table in each cell.. ;)

    
    <table border="3" cellpadding="0" cellspacing="0" width="400">
      <tr>
        <td width="33%">
        &nbsp;<table border="3" cellpadding="0" cellspacing="0" width="100%">
          <tr>
            <td width="100%">&nbsp;</td>
          </tr>
        </table>&nbsp;</td>
        <td width="33%">
        &nbsp;<table border="3" cellpadding="0" cellspacing="0" width="100%">
          <tr>
            <td width="100%">&nbsp;</td>
          </tr>
        </table>&nbsp;</td>
        <td width="34%">
        &nbsp;<table border="3" cellpadding="0" cellspacing="0" width="100%">
          <tr>
            <td width="100%">&nbsp;</td>
          </tr>
        </table>&nbsp;</td>
      </tr>
    </table>
    
    Code (markup):
     
    hasbehas, Aug 31, 2005 IP
    JoeO likes this.
  3. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #3
    i am not sure how to do it that way
     
    bobby9101, Aug 31, 2005 IP
  4. hasbehas

    hasbehas Well-Known Member

    Messages:
    726
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    190
    #4
    well.. you asked that way.. unless you want 2 use css margins :)
    this is the easiest way I believe..
     
    hasbehas, Sep 1, 2005 IP
  5. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I got it but thanx
     
    bobby9101, Sep 2, 2005 IP
  6. newera

    newera Peon

    Messages:
    437
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    i agree with hasebehas
    one table contains all the elements of the page
     
    newera, Sep 5, 2005 IP