案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
h1 {font-size: 300%}
5
h2 {font-size: 200%}
6
p {font-size: 100%}
7
</style>
8
</head>
9
10
<body>
11
<h1>This is header 1</h1>
12
<h2>This is header 2</h2>
13
<p>This is a paragraph</p>
14
</body>
15
16
</html>
17