案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.important {color:red;}
5
h1.important {color:blue;}
6
</style>
7
</head>
8
9
<body>
10
<h1 class="important">This heading is very important.</h1>
11
12
<p class="important">This paragraph is very important.</p>
13
14
<p>This is a paragraph.</p>
15
16
<p>This is a paragraph.</p>
17
18
<p>This is a paragraph.</p>
19
20
<p>...</p>
21
</body>
22
</html>
23