Answers for "html table span 2 rows"

2

html table span 2 rows

<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
Posted by: Guest on July-03-2020
3

html table colspan and rowspan

<td colspan="4">Content</td>
<td rowspan="4">Content</td>
Posted by: Guest on September-29-2020

Browse Popular Code Answers by Language