20.content/quotesプロパティは、内容を挿入し、引用符を指定します。 ※ieは標準モードでのみ機能(ie7以下は未対応)、safari、chromeは未対応。 適用要素:すべての要素


※★CSS
.sample20 {
	quotes: "{" "}";
	background-color:#ffccff;
}
.sample20:before {
	content: open-quote;
	background-color:#ffccff;
}
.sample20:after {
	content: close-quote;
	background-color:#ffccff;
}


※★HTML
<p>.text <span class="sample20"> color: #0000ff; </span></p>

.text color: #0000ff;