目录

CSS quotes 属性


示例

指定引用的引号:

#a {
  quotes: "'" "'";
}
亲自试一试 »

定义和用法

这个quotes属性设置引用的引号类型。

展示演示❯

默认值: 未指定
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS2
JavaScript 语法: 对象.style.quotes="'\253' '\273'"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
quotes 11.0 8.0 1.5 5.1 4.0


CSS 语法

quotes: none| string|initial|inherit;

属性值

Value Description Demo
none Specifies that the "open-quote" and "close-quote" values of the "content" property will not produce any quotation marks Demo ❯
string string string string Specifies which quotation marks to use. The first two values specifies the first level of quotation embedding, the next two values specifies the next level of quote embedding, etc Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

引号字符

Result Description Entity Number
" double quote \0022
' single quote \0027
single, left angle quote \2039
single, right angle quote \203A
« double, left angle quote \00AB
» double, right angle quote \00BB
left quote (single high-6) \2018
right quote (single high-9) \2019
left quote (double high-6) \201C
right quote (double high-9) \201D
double quote (double low-9) \201E

相关页面

HTML DOM 参考:报价属性