contentプロパティでopen-quote, close-quoteの各値を指定することで引用符を表示させることができない。
- Category: Safari, ver.3 Under
- Tag: content
例示
<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でこの不具合が発生するそうです。


