<ABBR>タグは<ACRONYM>タグと同様に、単語の頭文字からなる略語 (abbreviation) であることを表します。 例えば、HTML (Hyper Text Markup Language) や WWW (World Wide Web) などです。
HTML要素のタグ名、属性名および属性値は、大文字と小文字のどちらでもよい
<abbr>
<!-- phrasing content. -->
</abbr>
<ABBR>
<!-- phrasing content. -->
</ABBR>
abbr 要素の開始タグ及び終了タグは省略できない。
HTMLタグ<abbr> の使用例と表示サンプルを次に示します。表示結果はブラウザによって異なることがあります。
株価収益率を表す<abbr title="Price Earnings Ratio">PER</abbr>は、米国ではPE ratioと表記される。
株価収益率を表すPERは、米国ではPE ratioと表記される。
abbr 要素の開始タグと終了タグの間には、フレージング・コンテンツを含めることができる。具体的には、以下に示す要素である。
<a>
<abbr>
<area>
(マップ要素の子孫である場合)<audio>
<b>
<bdi>
<bdo>
<br>
<button>
<canvas>
<cite>
<code>
<data>
<datalist>
<del>
<dfn>
<em>
<embed>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<label>
<link>
(本文中で許可されている場合)<map>
<mark>
<math>
<meta>
(itemprop 属性が存在する場合)<meter>
<noscript>
<object>
<output>
<picture>
<progress>
<q>
<ruby>
<s>
<samp>
<script>
<select>
<slot>
<small>
<span>
<strong>
<sub>
<sup>
<svg>
<template>
<textarea>
<time>
<u>
<var>
<video>
<wbr>
次に示す属性をabbr要素に指定できる。
値 | 状態 |
---|---|
off | 自動的にキャピタライズしない。 |
none | |
on | 文の最初の文字を大文字に、それ以外を小文字にする。 |
sentences | |
words | 単語の最初の文字を大文字に、それ以外を小文字にする。 |
characters | すべての文字を大文字にする。 |
値 | 説明 |
---|---|
ltr | 左から右へ |
rtl | 右から左へ |
auto | 自動的に決定させる |
<p>The <abbr title="Web Hypertext Application Technology Working Group">WHATWG</abbr>
is a community of people interested in evolving the web through standards and tests.</p>
The WHATWG is a community of people interested in evolving the web through standards and tests.
JavaScript の HTMLElement インタフェースを通じて abbr 要素へアクセスできる。HTMLElement インタフェースは以下に示すプロパティを持つ。
document.querySelector("#whatwg").title = "Web Hypertext Application Technology Working Group";
Web Hypertext Application Technology Working Group 2023. Text-level semantics. HTML Living Standard