HTML <colgroup> with align Attribute

You are Here:

HTML <colgroup> with align Attribute

The align attribute specifies the horizontal alignment of the content related to a <colgroup> element.

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

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <table> <colgroup align="left"> </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
leftAligning the content to the left of the cell.
centerAligning the content to the center of the cell.
rightAligning the content to the right of the cell.
justifyExpand the lines so that each line has equal width.
charAligning the content to a specific character.

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