<p lang="ch"><q>这本书很赞!</q></p> <p lang="en"><q>This book is very good!</q></p> <p lang="no"><q>denne bog er fantastisk!</q></p> /* 为不同语言指定引号的表现 */ :lang(ch) > q { quotes:'“' '”'; } :lang(en) > q { quotes:'"' '"'; } :lang(no) > q { quotes:'«' '»'; } /* 在q标签的前后插入引号 */ q:before { content:open-quote; } q:after { content:close-quote; }