Cascading Style Sheets quotes property.
quotesプロパティとは要素の前後に挿入される、引用符を指定するプロパティです。:before、:after擬似要素と contentプロパティで挿入する引用符を設定する際に、ここで指定された開始引用符、終了引用符が使用されます。引用符のペアを複数設定することで、入れ子の階層に応じた引用符を設定することができます。
HTML Sample
<q>To be or not to be. That's the question!</q>
CSS Sample
.q {
quotes: "<" ">";
}
.q::before {
content: open-quote;
}
.q::after {
content: close-quote;
}
To be or not to be. That's the question!
HTML source
<div lang="fr">
<q>Ceci est une citation française.</q>
</div>
<div lang="ru">
<q>Это русская цитата</q>
</div>
<div lang="ja">
<q>これは日本語の引用符です。</q>
</div>
<div lang="en">
<q>This is an English quote.</q>
</div>
CSS source
q {
quotes: auto;
}
Ceci est une citation française.
Это русская цитата
これは日本語の引用符です。
This is an English quote.