html table help

Discussion in 'HTML & Website Design' started by Dirty-Rockstar, Dec 5, 2007.

  1. #1
    I can never seem to get html tables down pat. GRRR

    ok heres my simple source. i want the table with the word "test" to be just inside the main table with the border = 4 but at the bottom. im sure you can see what im trying to accomplish. keeps breaking, i tried table rows in rows but got complicated. can someone show me the correct way to do this please?

    help?

    
    
    <table border=4 width='100%' height='100%'>
    <tr>
    <td>
    
    
    <table border='1' width='100%'>
      <tr>
          <td valign=top>
    1
           </td>
      
    
    </table>
    
    
    
    
    
    <table border='1' height='100%' align='right'>
         <tr>
             <td valign=top>
    3
             </td>
    </tr>
    
    </table>
    
    
    
    
    <table border='1' height='100%'>
         <tr>
             <td valign=top>
    2
             </td>
    
    </tr>
    
    </table>
    
    
    
    </td>
    </tr>
    
    </table>
    
    <table border='1' width='100%'>
    <tr>
      <td valign='top'>
         test
       </td>
     </tr>
    </table>
    
    HTML:
     
    Dirty-Rockstar, Dec 5, 2007 IP
  2. Dirty-Rockstar

    Dirty-Rockstar Guest

    Messages:
    252
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    based on the views to replies i realized that the help i was asking for was ridiculous so i did some research myself and came up with a resolution

    
    <table border=1 width='100%' height='100%'><tr>
    <td colspan=3 height=20% align=center valign=middle>Top bar</td>
    </tr><tr>
    <td align=left>1</td>
    <td width=90% align=center valign=middle>2</td>
    <td align=right>3</td>
    </tr><tr>
    <td colspan=3 height=20% align=center valign=middle>bottom</td>
    </tr></table>
    
    HTML:
    nothing like the ol silent "moron" treatment in forums :p

    thread resolved
     
    Dirty-Rockstar, Dec 5, 2007 IP