contentプロパティでopen-quote, close-quoteの各値を指定することで引用符を表示させることができない。
<style type="text/css">
span.sample {
quotes: '【' '】';
}
span.sample:before {
content: open-quote;
color: blue;
}
span.sample:after {
content: close-quote;
color: blue;
}
</style>
<p>→<span class="sample">引用</span>←</p>
→引用←
文字列「引用」の前後に引用符として前景色が青色の括弧を表示させています。
N7.02での表示
Safari1.0でこの不具合が発生するそうです。