Colspan And Rowspan In Html Code Example
Example 1: html table span 2 rows
<td colspan="2">Content here</td> // or... <td rowspan="2">Content here</td>
Example 2: html table colspan and rowspan
<td colspan="4">Content</td> <td rowspan="4">Content</td>
Comments
Post a Comment