实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css content no-open-quote 实例 - 自学教程(runoops.com)</title> <style> p::before { content: open-quote; } p::after { content: close-quote; } p.test:before { content: no-open-quote; } p.test:after { content: no-close-quote; } </style> </head> <body> <p>Runoops 教程</p> <p class="test">CSS 教程</p> 注意:class 为 test 的 p 标签不会添加引号。 </body> </html>
运行结果: