quotes属性设置嵌套引用的引号类型。
注意:不建议使用。
quotes:none|string string string string|inherit;
值 | 描述 |
none | 规定 “content” 属性的 “open-quote” 和 “close-quote” 的值不会产生任何引号。 |
string string string string | 定义要使用的引号。前两个值规定第一级引用嵌套,后两个值规定下一级引号嵌套。 |
inherit | 规定应该从父元素继承 quotes 属性的值。 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style type="text/css">
q:lang(en)
{
quotes: "#" "#" "'" "'";
}
</style>
</head>
<body>
<p><q>Welcome to <q>FishC.com</q> !</q></p>
</body>
</html>
Welcome to
FishC.com
!
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
1.0 | 1.0 | 1.0 | 8.0 |