<html>
<head>
<style>
p::before {
content: open-quote;
}
p::after {
content: close-quote;
}
p.hometown::before {
content: no-open-quote;
}
p.hometown::after {
content: no-close-quote;
}
</style>
</head>
<body>
<p>我叫唐纳德</p>
<p class="hometown">我住在达克斯堡</p>
<p><b>注意:</b>在这个页面中,p 元素应该有引号,但是带有 class="hometown" 的 p 元素不应该。</p>
<p><b>注意:</b>没有“开引号”就不能有“闭引号”。</p>
</body>
</html>