Answers for "how to make row span and column span in one table in html"

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
2

html table colspan and rowspan

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

Code answers related to "how to make row span and column span in one table in html"

Browse Popular Code Answers by Language