HTML | <td> abbr Attribute Last Updated : 10 Mar, 2022 Comments Improve Suggest changes Like Article Like Report The HTML <td> abbr attribute is used to specify the shorter version of the content. This attribute is not supported by HTML 5. It does not describe any visual effect but it is used by screen readers. Syntax: <td abbr="text"> Attribute Values: text: It contains the short description of cell content. Note : This attribute is not supported by HTML 5. Example: html <!DOCTYPE html> <html> <head> <title> HTML td abbr Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML td abbr Attribute</h2> <table border="1"> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> <tr> <td abbr="name of student">BITTU</td> <td abbr="age of student">22</td> <td abbr="branch name">CSE</td> </tr> <tr> <td>RAKESH</td> <td>25</td> <td>EC</td> </tr> </table> </body> </html> Output: Supported Browsers: The browser supported by HTML <td> abbr attribute are listed below: Google Chrome Internet Explorer Firefox Safari Opera Comment More infoAdvertise with us Next Article HTML | <td> abbr Attribute J jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <th> abbr Attribute The HTML <th> abbr Attribute is used to specify the shorter version of content in header cell. It does not describe any visual effect but it is used by screen readers. Syntax: <th abbr="text"> Attribute Values: text: It contains the short description of header cell content. Example: html 1 min read HTML <abbr> title Attribute The HTML <abbr> title attribute is used to specify the extra information about an element. The <abbr> element represents an abbreviation or acronym. When the mouse moves over the element then it shows the information. Syntax<abbr title = "text">Attribute ValueIt contains single-val 1 min read HTML <td> align Attribute In HTML, the <td> (table data) element is used to define an individual cell within a table row (<tr>). It plays a crucial role in organizing and presenting structured data clearly. Whether displaying numerical values, text, or percentagesâsuch as 85% for progress or success ratesâthe 2 min read HTML <tr> align Attribute 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> el 1 min read HTML | <tbody> align Attribute The HTML <tbody> align Attribute is used to set the horizontal alignment of text content inside the table body (tbody). Syntax: <tbody align="left | right | center | justify | char"> Attribute Value: left: It sets the text left-align. right: It sets the text right-align. center: It sets 1 min read Like