HTML | <abbr> atributo de título

El atributo de título HTML <abbr> se utiliza para especificar la información adicional sobre un elemento. Cuando el mouse se mueve sobre el elemento, muestra la información. 

Sintaxis:

<abbr title = "text">

Valor de atributo: este atributo contiene texto de valor único que se utiliza como texto de información sobre herramientas para un elemento. Este título está asociado con todos los elementos HTML. 

Ejemplo: 

html

<!DOCTYPE html>
<html>
    <head>
        <title>HTML | <abbr> title attribute
</title>
        <style> e
            body {
                text-align:center;
            }
            h1 {
                color:green;
            }
        </style>
    </head>
    <body>
        <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML abbr title attribute</h2>
        <abbr title="GeeksforGeeks">GFG</abbr>
    </center>
    </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
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *