案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.soliddouble {border-style: solid double}
5
p.doublesolid {border-style: double solid}
6
p.groovedouble {border-style: groove double}
7
p.three {border-style: solid double groove}
8
</style>
9
</head>
10
11
<body>
12
<p class="soliddouble">Some text</p>
13
14
<p class="doublesolid">Some text</p>
15
16
<p class="groovedouble">Some text</p>
17
18
<p class="three">Some text</p>
19
</body>
20
21
</html>
22