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

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <abbr> Tag

Die <abbr>-Markierung in HTML-Dokumenten definiert Abkürzungen oder Abkürzungen. Ein Beispiel für eine Abkürzung ist Mr. (Mister). Ein Beispiel für ein Akronym ist WTO, das World Trade Organization bedeutet. Dieses Tag wird auch als <abbr>-Element bezeichnet.

Online-Beispiel

Die folgenden markierten Abkürzungen sind wie folgt:

!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 Beispiel von de.oldtoolbag.com</title>
</head>
<body>
<h1>Überschrift 1</h1>
<p>Did you know that <abbr>HTML</abbr> stands for HyperText Markup Language?</p>
</body>
</html>
Testen Sie es heraus ‹/›

Browser-Kompatibilität

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 of Tag

<abbr> Tag is used to represent an abbreviation or 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 an 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 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 converting the text to lowercase.

Global Attributes

Support for <abbr> Tag Global Attributes of HTML.

Event Attributes

Support for <abbr> Tag HTML Event Attributes.