To create all the frames for my website, I have to use
nested tables (see code below).
Does anyone knows a better way to do this without
using NESTED table? Thanks.
Nested tables:
<table id="Table1" align="center" cellSpacing="0" cellPadding="0" width="760" border="1">
<tr>
<td bgColor="#66cc00" colSpan="3" height="1"><IMG height="1" src="/Images/Blank.gif" width="1"></td>
</tr>
<tr>
<td width="1" bgColor="#66cc00"><IMG height="6" src="/Images/Blank.gif" width="1"></td>
<td align="middle" width="178">
<table id="Table2" width="760" align="center" bgColor="#ffffff">
<tr>
<td align="left" width="30%">
Testing... Testing... Testing...
</td>
</tr>
</table>
</td>
<td width="1" bgColor="#66cc00"><IMG height="6" src="/Images/Blank.gif" width="1"></td>
</tr>
<tr>
<td bgColor="#66cc00" colSpan="3" height="1"><IMG height="1" src="/Images/Blank.gif" width="1"></td>
</tr>
</table>




Bookmarks