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:
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 thread resolved