案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<p>请适当缩小浏览器窗口,就可以看到该属性的效果:</p>
5
6
<p>换行的表格:</p>
7
8
<table border="1">
9
  <tr>
10
    <th>Company in USA</th>
11
    <th>--------------------- Address --------------------</th>
12
  </tr>
13
  <tr>
14
    <td>Apple, Inc.</td>
15
    <td>1 Infinite Loop Cupertino, CA 95014</td>
16
  </tr>
17
  <tr>
18
    <td>Google, Inc.</td>
19
    <td>1600 Amphitheatre Parkway Mountain View, CA 94043</td>
20
  </tr>
21
</table>
22
23
<p>不换行的表格:</p>
24
25
<table border="1">
26
  <tr>
27
    <th>Company in USA</th>
28
    <th style="white-space:nowrap">--------------------- Address --------------------</th>
29
  </tr>
30
  <tr>
31
    <td>Apple, Inc.</td>
32
    <td>1 Infinite Loop Cupertino, CA 95014</td>
33
  </tr>
34
  <tr>
35
    <td>Google, Inc.</td>
36
    <td>1600 Amphitheatre Parkway Mountain View, CA 94043</td>
37
  </tr>
38
</table>
39
40
</body>
41
</html>
42