title | slug | l10n | ||
---|---|---|---|---|
<blockquote>: ブロック引用要素 |
Web/HTML/Element/blockquote |
|
{{HTMLSidebar}}
<blockquote>
は HTML 要素で、内包する要素のテキストが引用文であることを示します。通常、字下げして表示されます(整形方法については注意の項を参照してください)。引用元の URL は cite
属性により与えることができ、引用元のテキスト表現は {{HTMLElement("cite")}} 要素を用いて与えることができます。
{{EmbedInteractiveExample("pages/tabbed/blockquote.html","tabbed-standard")}}
この要素にはグローバル属性があります。
cite
- : 引用元の文書の URL、または引用元の情報に関するメッセージを示します。この属性は、引用文の背景や出典についての説明を指し示すためのものです。
引用された文字列に適用される字下げを変更するには、 {{Glossary("CSS")}} の {{cssxref("margin-left")}} や {{cssxref("margin-right")}} プロパティ、または一括指定の {{cssxref("margin")}} プロパティを使用してください。
独立したブロックというより行内の短い引用を行うには、 {{HTMLElement("q")}} (Quotation) 要素を使用してください。
この例は {{RFC(1149)}}, A Standard for the Transmission of IP Datagrams on Avian Carriers からの文言を引用するために <blockquote>
要素を使用する例です。
<blockquote cite="https://datatracker.ietf.org/doc/html/rfc1149">
<p>
Avian carriers can provide high delay, low throughput, and low altitude
service. The connection topology is limited to a single point-to-point path
for each carrier, used with standard carriers, but many carriers can be used
without significant interference with each other, outside early spring. This
is because of the 3D ether space available to the carriers, in contrast to
the 1D ether used by IEEE802.3. The carriers have an intrinsic collision
avoidance system, which increases availability.
</p>
</blockquote>
以下のように出力されます。
{{EmbedLiveSample("Examples", 640, 180)}}
コンテンツカテゴリー | フローコンテンツ, 区分化ルート, 知覚可能コンテンツ |
---|---|
許可されている内容 | フローコンテンツ |
タグの省略 | なし。開始タグと終了タグの両方が必須です。 |
許可されている親要素 | フローコンテンツを受け入れるすべての要素 |
暗黙の ARIA ロール | 対応するロールなし |
許可されている ARIA ロール | すべて |
DOM インターフェイス | {{domxref("HTMLQuoteElement")}} |
{{Specifications}}
{{Compat}}
- {{HTMLElement("q")}}: インラインの引用のための要素
- {{HTMLElement("cite")}}: 情報源の引用のための要素