view_column
colspan Attribute
check_circle
Makes a cell span multiple columns
check_circle
Value: number of columns to span
<td colspan="2">Cell spans 2 columns</td>
table_rows
rowspan Attribute
check_circle
Makes a cell span multiple rows
check_circle
Value: number of rows to span
<td rowspan="3">Cell spans 3 rows</td>
colspan="2" Example
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Spanning 2 columns | Cell 3 | |
| Cell 4 | Cell 5 | Cell 6 |
rowspan="2" Example
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Spanning 2 rows |
Cell 2 | Cell 3 |
| Cell 5 | Cell 6 |