HTML Table Colspan & Rowspan
HTML Table Colspan and Rowspan
Colspan and rowspan are attributes used to merge cells in a table.
Colspan
Purpose: Merges multiple columns into a single cell.
Attribute: colspan
Example:
HTML
<table>
<tr>
<th>Product</th>
<th>Price</th>
<th colspan="2">Quantity</th>
</tr>
<tr>...