Open In App

HTML | <colgroup> valign Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <colgroup> valign Attribute is used to specify the vertical alignment of text content in a colgroup Element.

Syntax:

<colgroup valign="top | middle | bottom | baseline">

Attribute Values

  • top: It sets the content to top-align.
  • middle: It sets the content to middle-align.
  • bottom: It sets the content to bottom-align.
  • baseline: It sets the content to baseline. The baseline is the line where most of the characters sit. It has a default value.

Note : The HTML |

valign Attribute is not supported by HTML5.

Example:




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML ColumnGroup valign Attribute
    </title>
 
    <style>
        #myColGroup {
            background: green;
        }
         
        table {
            color: white;
            margin-left: 180px;
            background: yellow;
        }
         
        #Geek_p {
            color: green;
            font-size: 30px;
        }
         
        td {
            padding: 10px;
        }
         
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
 
    <h2>
        HTML ColumnGroup valign Attribute
    </h2>
 
    <table>
        <colgroup id="myColGroup"
                  span="3"
                  align="char"
                  char="."
                  charoff="3"
                  valign="top">
        </colgroup>
 
        <tr>
            <th>S.No</th>
            <th>Title</th>
            <th>Geek_id</th>
        </tr>
        <tr>
            <td>Geek_1</td>
            <td>GeekForGeeks</td>
            <th>Geek_id_1</th>
        </tr>
        <tr>
            <td>Geek_2</td>
            <td>GeeksForGeeks</td>
            <th>Geek_id_2</th>
        </tr>
    </table>
</body>
 
</html>


Output:

Supported Browsers: The browsers supported by HTML <colgroup> valign attribute are listed below:

  • Internet Explorer


Last Updated : 25 Feb, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads