Qタグでの標準時のサンプル
<q>あいうえお<q>あいうえお</q></q>
*
<Q>タグについてはこちら
あいうえおあいうえお
Qタグに引用符を設定
●CSSの定義
.test1 q {quotes: "「" "」" "『" "』"; }
.test1 q:before {content: open-quote; }
.test1 q:after {content: close-quote; }
●HTML
<div class="test1">
<q>あいうえお<q>あいうえお</q></q>
</div>
SPANタグでのサンプル(表示されない)
●CSSの定義
.test2 span {quotes: "(" ")" "{" "}" "[" "]"; }
●HTML
<span>あいうえお<span>かきくけこ</span></q>
SPANタグでのサンプル(表示させる)
●CSSの定義
.test3 span {quotes: "(" ")" "{" "}" "[" "]"; }
.test3 span:before {content: open-quote; }
.test3 span:after {content: close-quote; }
●HTML
<div class="test3">
<span>あいうえお<span>かきくけこ<span>さしすせそ</span></span></span>
</div>