「quotes」は、「content」で挿入する引用符を指定します。
CSS Ver. | 適用要素 | 継承 |
---|---|---|
2.1 | 全要素 | する |
構文 | |
---|---|
quotes : [開始引用符 終了引用符] | none; |
|
プロパティ/設定値 | 意味 |
quotes : "開始引用符" "終了引用符"; | 開始引用符と終了引用符の文字列をスペースで区切ってセットで指定。 引用符をセットで複数指定すると、入れ子の引用符の指定となる。 引用符は、指定した順に、入れ子の上位の階層から順に指定される。 |
quotes : none; | 引用符を表示しない |
デフォルト:「タグ毎のスタイル初期値」を参照 |
<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>
quotesは、contentで挿入する引用符を指定します。
contentで引用符挿入を指定しても、
quotes:none;で引用符は表示されません。
関連するCSS(STYLE) | |
---|---|
cursor | カーソルの種類 |
empty-cells | 空セルの表示 |
opacity | 透明度 |
visibility | 表示の有無 |