Could any one give the html code for the below table using ro开发者_运维技巧wspan and colspan
Many Thanks Hari Gillala
Anyway the answer:
<table border="1" style="width: 100%; height: 100%;">
<tr>
<td></td>
<td rowspan="2" colspan="3"></td>
</tr>
<tr>
<td rowspan="2"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
Perhaps this should be moved to https://webmasters.stackexchange.com/ ?
No rowspans are necessary for that layout.
<table>
<tr><td>
<table>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
</td><td>
<table>
<tr><td colspan="3"></td></tr>
<tr><td></td><td></td><td></td></tr>
</table>
</td></tr>
</table>
精彩评论