Example An HTML table with table cells that spans two columns: <table width="100%" border="1"> ...
Example
An HTML table with table cells that spans two columns:<table width="100%" border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td colspan="2">January</td> </tr> <tr> <td colspan="2">February</td> </tr> </table> |
Definition and Usage
The colspan attribute defines the number of columns a cell should span.Browser Support
The colspan attribute is supported in all major browsers.Note: None of the major browsers supports colspan="0", which have a special meaning (look below in the "Attribute Values" table).
Syntax
<td colspan="value"> |
Attribute Values
Value | Description |
---|---|
number | Sets the number of columns a header cell should span.Note: colspan="0" tells the browser to span the cell to the last column of the column group (colgroup) |