HTML Table Colgroup
The <colgroup> element is used to style specific columns of a table.
The <colgroup> element is used to style specific columns of a table.
If you want to style the two first columns of a table, use the < colgroup > and <col> elements.
<table>
<colgroup>
<col span="2" style="background-color: lightgray">Company</th>
</colgroup>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<th>Alfreds Futterkiste</th>
<th>Maria Anders</th>
<th>Germany</th>
</tr>
<tr>
<th>Centro comercial Moctezuma</th>
<th>Francisco Chang</th>
<th>Denver</th>
</tr>
<tr>
<th>Moctezuma</th>
<th>Anders</th>
<th>USA</th>
</tr>
</table>
Company | Contact | Country | city |
---|---|---|---|
Alfreds Futterkiste | Maria Anders | Germany | Berlin |
Centro comercial Moctezuma | Francisco Chang | Japan | Tokyo |
Moctezuma | Anders | USA | Dearborn |
In this page (written and validated by A. Gawali) you learned about HTML Table colgroup . What's Next? If you are interested in completing HTML tutorial, your next topic will be learning about: HTML List.
Share On: |