案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html>
3
<head>
4
<style type="text/css">
5
p[class~="important"]
6
{
7
color: red;
8
}
9
</style>
10
</head>
11
12
<body>
13
<h1>可以应用样式:</h1>
14
<p class="important warning">This is a paragraph.</a>
15
<p class="important">This is a paragraph.</a>
16
17
<hr />
18
19
<h1>无法应用样式:</h1>
20
<p class="warning">This is a paragraph.</a>
21
</body>
22
</html>
23