hi
My question is simple , i had a quarrel now to decide which one is right
which structure is logically best
[CODE=HTML]
<table width="800" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="300" align="left" valign="top">
<table width="250" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td>Left Menu 1</td>
</tr>
</table>
<table width="100" border="1" cellpadding="0" cellspacing="0" >
<tr>
<td>Left Menu 2</td>
</tr>
</table>
</td>
<td width="500" valign="top">Co ntent Area </td>
</tr>
</table>
[/CODE]
[CODE=HTML]
<table width="800" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td>
<table width="300" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="300" align="left" valign="top">
<table width="250" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td>Left Menu 1</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100" border="1" cellpadding="0" cellspacing="0" >
<tr>
<td>Left Menu 2</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="500" align="center">
content
</td>
</tr>
</table>
[/CODE]
My question is simple , i had a quarrel now to decide which one is right
which structure is logically best
[CODE=HTML]
<table width="800" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="300" align="left" valign="top">
<table width="250" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td>Left Menu 1</td>
</tr>
</table>
<table width="100" border="1" cellpadding="0" cellspacing="0" >
<tr>
<td>Left Menu 2</td>
</tr>
</table>
</td>
<td width="500" valign="top">Co ntent Area </td>
</tr>
</table>
[/CODE]
[CODE=HTML]
<table width="800" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td>
<table width="300" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="300" align="left" valign="top">
<table width="250" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td>Left Menu 1</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100" border="1" cellpadding="0" cellspacing="0" >
<tr>
<td>Left Menu 2</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="500" align="center">
content
</td>
</tr>
</table>
[/CODE]
Comment