案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.bottommargin
5
{
6
margin-bottom: 25%
7
}
8
</style>
9
</head>
10
<body>
11
12
<p>This is a paragraph with no margin specified</p>
13
<p class="bottommargin">This is a paragraph with a specified bottom margin</p>
14
<p>This is a paragraph with no margin specified</p>
15
16
</body>
17
</html>
18