案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
h1 {text-align: center}
5
h2 {text-align: left}
6
h3 {text-align: right}
7
</style>
8
</head>
9
10
<body>
11
<h1>这是标题 1</h1>
12
<h2>这是标题 2</h2>
13
<h3>这是标题 3</h3>
14
</body>
15
16
</html>
17