小码哥的IT人生

CSS quotes 属性 详解

css3基础 2022-07-14 16:31:42小码哥的IT人生shichen

CSS quotes 属性

定义和用法

quotes 属性设置嵌套引用(embedded quotation)的引号类型。

另请参阅:

HTML DOM 参考手册:quotes 属性

实例

q:lang(en)
  {
  quotes: '"' '"' "'" "'";
  }

HTML 代码:

<html lang="en">
<head>
</head>
<body>
<p><q>This is a <q>big</q> quote</q></p>
</body>
</html>

输出:

"This is a 'big' quote"

 

完整实例【亲自试一试】:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<style type="text/css">
q:lang(en)
{
quotes: '"' '"' "'" "'"
}
</style>
</head>
<body>
<p><q>This is a <q>big</q> quote.</q></p>
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 quotes 属性。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

CSS 语法

quotes: none|string|initial|inherit;

属性值

描述
none 规定 "content" 属性的 "open-quote" 和 "close-quote" 的值不会产生任何引号。
string string string string

定义要使用的引号。

前两个值规定第一级引用嵌套,后两个值规定下一级引号嵌套。

inherit 规定应该从父元素继承 quotes 属性的值。

技术细节

默认值: not specified
继承性: yes
版本: CSS2
JavaScript 语法: object.style.quotes="none"

引号字符

Quotation Mark Characters

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

Chrome IE / Edge Firefox Safari Opera
11.0 8.0 1.5 5.1 4.0

注释:如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 quotes 属性。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024