案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p.spread {word-spacing: 30px;}
5
p.tight {word-spacing: -0.5em;}
6
</style>
7
</head>
8
9
<body>
10
<p class="spread">This is some text. This is some text.</p>
11
<p class="tight">This is some text. This is some text.</p>
12
</body>
13
</html>
14