For example below table have two rows are to be combine using rowspan.
Following are HTML Code for above merge table.
<html>
<head><title></title></head>
<body>
<table border="1" width="50%" height="30%">
<tr>
<th rowspan="2">CSCEXPERT</th>
<td>CSCEXPERT</td>
</tr>
<tr>
<td>CSCEXPERT</td>
</tr>
</table>
</body>
</html>
No comments:
Post a Comment