<abbr> (tag HTML) definisce, attraverso l’attributo HTML title, il testo (spesso una abbreviazione, una sigla o un acronimo) cui acceda. Può essere annidato anche nel tag HTML <dfn> (a sua volta, però, senza attributo base globale HTML title).
attributi
speciali
Nessuno.
globali
Caricamento…
scheda tecnica
– Contenuto: flusso, fraseggio, visibile
– Tipo: inline
– Intefraccia DOM: HTMLElement
– Supporto browser: totale
Sintassi
<abbr title="[testo]">[testo]</abbr>
Default CSS
abbr {
display: inline;
border-bottom: 1px dotted black;
cursor: help; /*freccia con punto interrogativo*/
}
Esempio
Sofferma il mouse su <abbr title="HyperText Markup Language">HTML</abbr>
Sofferma il mouse su HTML
Contenuti correlati
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment