通过伪元素指定不同语言下的引号
Posted Jo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过伪元素指定不同语言下的引号相关的知识,希望对你有一定的参考价值。
要指定不同语言下的引号,只需通过伪元素进行生成即可:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> :lang(en) > q {quotes:‘"‘ ‘"‘;} :lang(no) > q {quotes:"?" "?";} :lang(ch) > q {quotes:"“" "”";} q:before {content:open-quote;} q:after {content:close-quote;} </style> </head> <body> <p lang="en"><q>It’s only work if somebody makes you do it.</q></p> <p lang="no"><q>Hvis du forteller meg nok en vits, s? skal jeg sl? deg til jorden.</q></p> <p lang="ch"><q>欢迎来到上海,欢迎参观世博会!</q></p> </body> </html>
还是从鑫旭大神的文章里得来的:http://www.zhangxinxu.com/wordpress/2010/04/css-content内容生成技术以及应用/
以上是关于通过伪元素指定不同语言下的引号的主要内容,如果未能解决你的问题,请参考以下文章