Last Updated : 12 Jul, 2025
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:
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:RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4