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