Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <abbr> Tag


Example

An abbreviation is marked up as follows:

The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.
Try it Yourself »

Definition and Usage

The <abbr> tag defines an abbreviation or an acronym, like "HTML", "Mr.", "Dec.", "ASAP", "ATM".

Tip: An abbreviation or an acronym are both shortened versions of something else. Both are often represented as a series of letters.


Browser Support

Element
<abbr> Yes Yes Yes Yes Yes

Tips and Notes

Tip: Use the global title attribute to show the description of the abbreviation/acronym when you mouse over the <abbr> element.


Global Attributes

The <abbr> tag supports the Global Attributes in HTML.


Event Attributes

The <abbr> tag supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: Abbreviation Object


Default CSS Settings

Most browsers will display the <abbr> element with the following default values:

Example

abbr {
  display: inline;
}
Try it Yourself »