English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Manual de referência HTML

大全 de etiquetas HTML

Etiqueta <abbr> do HTML

A marca <abbr>HTML em documentos HTML define abreviações ou abreviações. Um exemplo de abreviação é Mr. (Mister). Um exemplo de sigla é WTO, que representa World Trade Organization. Este elemento também é conhecido como elemento <abbr>.

Exemplo online

Palavras abreviadas marcadas a seguir:

!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 Exemplo por pt.oldtoolbag.com</title>
</head>
<body>
<h1>Título 1</h1>
<p>Did you know that <abbr>HTML</abbr> stands for HyperText Markup Language?</p>
</body>
</html>
Teste e veja ‹/›

Navegador compatível

IEFirefoxOperaChromeSafari

All major browsers support the <abbr> tag.

Note:IE 6 or earlier versions of IE browsers do not support the <abbr> tag.

Definition and usage instructions of the tag

<abbr> tag is used to represent an abbreviation or an acronym, such as "WWW" or "WTO".

By marking abbreviations, you can provide useful information to browsers, spell checkers, translation systems, and search engine filters.

Tips and Notes

Tip:In some browsers, when you move the mouse over the abbreviation with the <abbr> tag/When hovering over an acronym, the title attribute of the <abbr> tag can be used to display the abbreviation./The full version of the acronym.

The HTML <abbr> element is located within the <body> tag.
The title attribute is optional, but if it is included, it must contain a readable abbreviation explanation. When hovering over the title on some browsers, it will display as a tooltip.
Some browsers may apply special styles to the <abbr> tag, such as adding an underline or translating the text to lowercase.

Global attributes

Support for <abbr> tag Global attributes of HTML.

Event attributes

Support for <abbr> tag Event attributes of HTML.