CSS
.main blockquote p:first-child:before {
content: '“';
position: absolute;
top: 7px;
left: 0;
}
.main blockquote p:last-child:after {
content: '”';
float: right;
position: absolute;
bottom: -9px;
right: 7px;
}
コード
<blockquote>
<p>A quote about many wonderful things...</p>
</blockquote>
これはほとんどのブラウザで機能します...IE8では、前の引用しか取得できません...何が欠けていますか?