案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style type="text/css">
5
p
6
  {
7
  background-color:hsl(120,65%,75%);
8
  }
9
</style>
10
</head>
11
12
<body>
13
<h1>这是标题 1</h1>
14
<p>这是段落中的一些文本。</p>
15
</body>
16
</html>
17