<string> - CSS(层叠样式表) 编辑

在CSS中,<string> 是用来表示一串字符的数据类型,它被用在众多CSS属性中,例如contentfont-family、和quotes

使用规则

<string> 数据类型是由包含在英文双引号(")或英文单引号(')中的任意数量的Unicode字符组成。

大多数字符都可以写成字面量的形式,并且所有字符都可以写成以反斜线(\)开头的十六进制Unicode码点的形式。比如说:\22表示一个双引号,\27表示一个单引号,\A9表示版权声明符号(©)。

需要注意的是,在使用某些特殊字符时需要在前面加上反斜线来转义,包括但不限于在双引号字符串中使用双引号字符,在单引号字符串中使用单引号字符,以及反斜线字符,比如\\表示一个反斜线字符。

当你想换行的时候,必须使用像\A或者\00000A这样的换行符。不过在你的代码中,可以通过在每行末尾增加一个反斜线(\)的方式来创建一个多行的字符串。

注意: CSS<string>中不能使用像&nbsp;或者&#8212;这样的实体。

例子

/* Simple strings */
"This string is demarkated by double quotes."
'This string is demarkated by single quotes.'

/* Character escaping */
"This is a string with \" an escaped double quote."
"This string also has \22 an escaped double quote."
'This is a string with \' an escaped single quote.'
'This string also has \27 an escaped single quote.'
"This is a string with \\ an escaped backslash."

/* New line in a string */
"This string has a \Aline break in it."

/* String spanning two lines of code (these two strings will have identical output) */
"A really long \
awesome string"
"A really long awesome string"

规范

SpecificationStatusComment
CSS Values and Units Module Level 3
<string>
Candidate RecommendationNo significant change from CSS Level 2 (Revision 1).
CSS Level 2 (Revision 1)
<string>
RecommendationExplicit definition; allows 6-digit Unicode escaped characters.
CSS Level 1
<string>
RecommendationImplicit definition; allows 4-digit Unicode escaped characters.

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support1.01.0 (1.0)(Yes)(Yes)1.0 (85)
\xx1.01.0 (1.0)6.0(Yes)1.0 (85)
FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
\xx(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:163 次

字数:6086

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文