files/en-us/web/api/htmltablerowelement/align/index.md
{{APIRef("HTML DOM")}}{{deprecated_header}}
The align property of the {{domxref("HTMLTableRowElement")}} interface is a string indicating how to horizontally align text in the {{htmlelement("tr")}} table row. Individual cells can override it.
[!NOTE] This property is deprecated, and CSS should be used to align text horizontally in a cell. Use the CSS {{cssxref("text-align")}} property, which takes precedence, to horizontally align text in a row instead.
The possible values are:
left
text-align: left instead.right
text-align: right instead.center
text-align: center instead.justify
text-align: justify instead.char
text-align: <string>, where the string is a single character, when supported.Use CSS text-align instead. An example is available on the {{cssxref("text-align")}} page.
{{Specifications}}
{{Compat}}