2 tables below each other and one on the right

Discussion in 'HTML & Website Design' started by jazzzyman, Apr 29, 2013.

  1. #1
    so im trying to crate 2 tables one underneath the first and a 3rd sitting against the 2 on the right
    all 3 will make sort of a square look in the end
    just after html no css
    thanks
     
    jazzzyman, Apr 29, 2013 IP
  2. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #2
    You REALLY need to learn CSS. You're asking to do layouts in bloated, slow fifteen year out of date methodologies.
     
    deathshadow, Apr 30, 2013 IP
  3. jazzzyman

    jazzzyman Well-Known Member

    Messages:
    117
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #3
    thats correct care to answer the question? oh and maybe the includes one please
     
    jazzzyman, Apr 30, 2013 IP
  4. a1brandz

    a1brandz Greenhorn

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    6
    #4
    You can achieve this through CSS positioning element. You can send me your design requirement in jpg I will develop it for you.
     
    a1brandz, Apr 30, 2013 IP
  5. jazzzyman

    jazzzyman Well-Known Member

    Messages:
    117
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #5
    thanks but i dont understand. i just want to position 3 tables as described above
     
    jazzzyman, Apr 30, 2013 IP
  6. SitesTen

    SitesTen Active Member

    Messages:
    47
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    75
    #6
    Truly it's good to learn CSS. But if you want to use tables, here's the code:
    
    <table border="1">
      <tr>
        <td>
          top-left
        </td>
        <td rowspan="2">
          right
        </td>
      </tr>
      <tr>
        <td>
          bottom-left
        </td>
      </tr>
    </table>
    
    HTML:
    You can put in each <td> inner tables if you want. Hope that helps!
     
    SitesTen, Apr 30, 2013 IP