HTML <col> with span Attribute
You are Here:
HTML <col> with span Attribute
The span
attribute specifies the number of columns a <col> element should cover.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<colgroup>
<col span="2" style="background-color:#b3b3cc">
<col style="background-color:#2eb82e">
</colgroup>
<tr>
<th>Roll No</th>
<th>Name</th>
<th>Mark</th>
</tr>
<tr>
<td>1</td>
<td>Brendan</td>
<td>90</td>
</tr>
<tr>
<td>2</td>
<td>Eich</td>
<td>92</td>
</tr>
</table>
</body>
</html>
Attribute Value
Value | Explanation |
---|---|
number | Specifies the number of columns a <col> element should cover. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.