HTML <colgroup> with width Attribute

You are Here:

HTML <colgroup> with width Attribute

The width attribute specifies the width of a <colgroup> element, in pixels.

Warning: The width attribute is deprecated and is no longer recommended.

Tips: To apply width for the content related to a <colgroup> element, try any of the following methods:

  • Using style global attribute: <colgroup style="width: 150px">.
  • Using CSS width property.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <table> <colgroup width="150"> </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 Values

NameExplanation
px or %Specifies a default width for each column in the current column group.

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.

Share this Page

Meet the Author