案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.bottommargin {margin-bottom: 2cm}
5
</style>
6
</head>
7
8
<body>
9
<p>这个段落没有指定外边距。</p>
10
<p class="bottommargin">这个段落带有指定的下外边距。</p>
11
<p>这个段落没有指定外边距。</p>
12
</body>
13
14
</html>
15