Search w3schools.com:

SHARE THIS PAGE

HTML <th> colspan Attribute

HTML th Reference HTML <th> tag

Example

An HTML table with a header cell that spans two columns:

<table border="1">
  <tr>
    <th colspan="2">Monthly Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

Try it yourself »

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The colspan attribute is supported in all major browsers.

Note: Only Firefox supports colspan="0", which have a special meaning (look below in the "Attribute Values" table).


Definition and Usage

The colspan attribute defines the number of columns a header cell should span.


Differences Between HTML 4.01 and HTML5

NONE.


Syntax

<th colspan="number">

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)


HTML th Reference HTML <th> tag

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]