WEBページ作成リファレンス
cman.jp cman.jp > WEBページ作成TOP > CSSリファレンス > 「引用符」

quotes「引用符」

「quotes」は、「content」で挿入する引用符を指定します。

CSS Ver.適用要素継承
2.1全要素する
広告

quotes の指定方法

構文

quotes : [開始引用符 終了引用符] | none;

プロパティ/設定値意味
quotes : "開始引用符" "終了引用符"; 開始引用符と終了引用符の文字列をスペースで区切ってセットで指定。
引用符をセットで複数指定すると、入れ子の引用符の指定となる。
引用符は、指定した順に、入れ子の上位の階層から順に指定される。
quotes : none; 引用符を表示しない
デフォルト:「タグ毎のスタイル初期値」を参照
ページTOP

quotes のサンプル


<style type="text/css">
.common div{
  font-family   : "メイリオ", sans-serif;
  width         : 290px;
  border        : 2px solid #6495ed;
  background    : #e7e7ff;
  padding       : 10px;
}
div.cssTitle {
  margin-top    : 10px;
  background    : #6495ed;
  color         : #fff;
  font-weight   : bold;
}
.css_quotes1 q { quotes :  "『" "』" "[" "]";}
.css_quotes1 q::before { content : open-quote;}
.css_quotes1 q::after { content : close-quote;}

.css_quotes2 span { quotes :  "(" ")";}
.css_quotes2 span::before { content : open-quote;}
.css_quotes2 span::after { content : close-quote;}

.css_quotes3 q { quotes :  none;}
.css_quotes3 q::before { content : open-quote;}
.css_quotes3 q::after { content : close-quote;}

<!-- html -->
<div class="common">
  <div class="cssTitle"><q>に引用符を表示(階層あり)</div>
  <div class="css_quotes1">
  <q><q>quotes</q>は、<q>content</q>で挿入する引用符を指定します。</q>
  </div>

  <div class="cssTitle"><span>に引用符を表示(階層なし)</div>
  <div class="css_quotes2">
  <span>quotes</span>は、<q>以外の要素にも指定可能です。
  </div>

  <div class="cssTitle"><q>の引用符を非表示<br>(quotes : none;)</div>
  <div class="css_quotes3">
  <q>content</q>で引用符挿入を指定しても、<q>quotes:none;</q>で引用符は表示されません。
  </div>
</div>
<q>に引用符を表示(階層あり)
quotesは、contentで挿入する引用符を指定します。
<span>に引用符を表示(階層なし)
quotesは、<q>以外の要素にも指定可能です。
<q>の引用符を非表示
(quotes : none;)
contentで引用符挿入を指定しても、quotes:none;で引用符は表示されません。

広告
QrCode
このページのURL
スマートフォン・タブレット運営 : CMAN 株式会社シーマン