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