搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS quotes属性示例- 基础教程(div.cn)</title> <style> q { quotes: '[' ']' '"' '"'; } q:before { content: open-quote; } q:after { content: close-quote; } </style> </head> <body> <p><q>Here is an <q>embedded</q> quotations.</q></p> </body> </html>
运行结果