hi there, i have a table with width of 60% and 40%. what can i do to have them together?
<table border="1" width="60%" cellspacing="20" cellpadding="10">
<tr height="60" valign="top">
<td colspan="2">1</td>
<td>2</td>
</tr>
<tr height="150" valign="top">
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</table>
<table border="1" width="40%" cellspacing="20" cellpadding="10">
<tr height="60" valign="top">
<td rowspan="2">1</td>
<td>2</td>
<td>3</td>
</tr>
<tr height="150" valign="top">
<td>5</td>
<td>6</td>
</tr>
</table>