案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
p.test1
6
{
7
width:11em; 
8
border:1px solid #000000;
9
text-wrap:none;
10
}
11
12
p.test2
13
{
14
width:11em; 
15
border:1px solid #000000;
16
text-wrap:normal;
17
}
18
</style>
19
</head>
20
<body>
21
22
<p class="test1"> This paragraph contains some text. This line should not breake or wrap to the next line.</p>
23
<p class="test2"> This paragraph contains some text: The line breaks as normal.</p>
24
25
<p><b>注释:</b>目前主流浏览器都不支持 text-wrap 属性。</p>
26
27
</body>
28
</html>
29