Reputation: 3
Can anyone help me on the following table structure:
I was unable to achieve that table structure using table row and colspans Can anyone help me on that...
Upvotes: 0
Views: 66
Reputation: 395
Try this
<table border="2">
<tr>
<td colspan="2" rowspan="5">r5 c2</td>
<td>c2</td>
</tr>
<tr>
<td>c2</td>
</tr>
<tr>
<td>c2</td>
</tr>
<tr>
<td>c2</td>
</tr>
<tr>
<td rowspan="2">c2 r2</td>
</tr>
<tr>
<td>c1</td>
<td>c1</td>
</tr>
</table>
Upvotes: 1