< 戻る

ブロック引用要素 <blockquote>

ブロック引用要素は、ブロック引用(block quote)を表す。

ブロック引用要素は、インラインよりも長いブロック単位の引用に使用し、インラインの引用には、 インライン引用要素 <q>を使用する。

また、引用要素 <cite>によって引用元のタイトルなどを明示できる。

目次
  1. ソースコードの例
  2. ブロック引用要素 <blockquote>が持つ「HTML属性」
  3. KnotTextでのHTML要素の分類

1. ソースコードの例

<!DOCTYPE html>
<html>
   <head>
   </head>
   <body>
      <blockquote  cite="https://html.spec.whatwg.org/multipage/grouping-content.html#the-blockquote-element">
         <p>『The blockquote element represents a section that is quoted from another source.

Content inside a blockquote must be quoted from another source, whose address, if it has one, may be cited in the cite attribute.』</p>
         <p> - 「<a> href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-blockquote-element">HTML Standard#4.4.4 The blockquote element</a>」より引用</p>
      </blockquote>
   </body>
</html>

『The blockquote element represents a section that is quoted from another source. Content inside a blockquote must be quoted from another source, whose address, if it has one, may be cited in the cite attribute.』

- 「HTML Standard#4.4.4 The blockquote element」より引用

2. ブロック引用要素 <blockquote>が持つコンテンツ属性

3. KnotTextでのHTML要素の分類

文書についての情報

見出しと文章

話題の区切りと文章の折返し

ソースコード

引用

言葉の定義

スタイリングのためのコンテナ

ブロックレベルのボックス

特殊なブロックレベルの構造(リスト形式)

特殊なブロックレベルの構造(テーブル形式)

特殊なブロックレベルの構造(フォーム形式)

特殊なブロックレベルの構造(インタラクティブ形式)

インラインレベルのテキスト

特殊なインラインレベルの構造(ルビ)

特殊なインラインレベルの構造(上付き・下付き)

特殊なインラインレベルの構造(左読み・右読み)

外部メディア

画像

スクリプト(Web API)

コメント