Open In App

HTML <tr> align Attribute

Last Updated : 05 Jan, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <tr> align Attribute is used to set the horizontal alignment of text content inside the table row. The HTML <tr> element itself doesn’t have an align attribute. For aligning content within a table row, use the CSS text-align property on the individual <td> or <th> elements inside the row.

Note: It is not supported by HTML5.

Syntax:

<tr align= "left | right | center | justify | char">

Attribute Values:

Attribute Values

Description

left

It sets the text left-aligned.

right

It sets the text right-align.

center

It sets the text center-align. It is a default value.

justify

It stretches the text of paragraph to set the width of all lines equal.

char

It sets the text-align to a specific character.

Example : In this example we will see the implementation of <tr> align attribute with an example.

html




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML tr align Attribute</title>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>HTML tr align Attribute</h2>
   
    <table width="500" border="1">
        <tr align="right">
            <th>Name</th>
            <th>Expenses</th>
        </tr>
 
        <tr align="center">
            <td>BITTU</td>
            <td>2500.00</td>
        </tr>
 
        <tr align="left">
            <td>RAKESH</td>
            <td>1400.00</td>
        </tr>
    </table>
</body>
 
</html>


Output:

Supported Browsers:

  • Google Chrome 1
  • Edge 12
  • Firefox 1
  • Safari 12.1
  • Opera 3


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads