案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html lang="en">
3
<head>
4
<style type="text/css">
5
q:lang(en)
6
{
7
quotes: '"' '"' "'" "'"
8
}
9
</style>
10
</head>
11
<body>
12
13
<p><q>This is a <q>big</q> quote.</q></p>
14
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 quotes 属性。</p>
15
</body>
16
</html>
17