El atributo abbr se usa para especificar la versión más corta o la abreviatura del contenido. No describe ningún efecto visual, pero los lectores de pantalla lo utilizan.
Uso : Se utiliza en las etiquetas <th> y <td> .
atributo abbr en la etiqueta <th>:
Sintaxis:
<th abbr="text">
Valores de atributos:
- texto: contiene la breve descripción del contenido de la celda del encabezado.
Ejemplo 1: el siguiente código muestra cómo usar el atributo abbr en la celda del encabezado.
HTML
<!DOCTYPE html> <html> <body> <h1 style="color:green">GeeksforGeeks</h1> <h2>HTML th abbr attribute</h2> <table border="1"> <tr> <th abbr="name of student">NAME</th> <th abbr="age of student">AGE</th> <th abbr="branch name">BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> <tr> <td>RAKESH</td> <td>25</td> <td>EC</td> </tr> </table> </body> </html>
Producción:
atributo abbr en la etiqueta <td>:
Sintaxis:
<td abbr="text">
Valores de atributos:
- texto: contiene una breve descripción del contenido de la celda de la columna.
Ejemplo 2: el siguiente código muestra cómo usar el atributo abbr en la celda de la columna.
HTML
<!DOCTYPE html> <html> <body> <h1 style="color:green">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>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML abbr se enumeran a continuación.
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA