案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.normal {font-weight: normal}
5
p.thick {font-weight: bold}
6
p.thicker {font-weight: 900}
7
</style>
8
</head>
9
10
<body>
11
<p class="normal">This is a paragraph</p>
12
13
<p class="thick">This is a paragraph</p>
14
15
<p class="thicker">This is a paragraph</p>
16
</body>
17
18
</html>
19