ABBR - Abbreviation

Syntax <ABBR>...</ABBR>
Attribute Specifications
Contents
Contained in ,

The ABBR element is used to markup abbreviations. The attribute is useful in conjunction with ABBR to give the long form of the abbreviation, allowing visual browsers to provide the long form as a "tooltip". If the short form is a pronounceable word, the element should be used instead of ABBR.

Examples:

Some short forms, such as "SQL" and "URL," are pronounced as words by some but pronounced letter-by-letter by others. In such cases, the ABBR element should be favored over . A style sheet could be used to suggest the aural rendering. For example, one could use

<ABBR TITLE="Uniform Resource Locator">URL</ABBR>

with the following style sheet:

abbr[title="Uniform Resource Locator"] { : spell-out }

More Information