案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<table border="1">
5
  <tr>
6
    <th>Poem</th>
7
    <th>Poem</th>
8
  </tr>
9
  <tr>
10
    <td nowrap="nowrap">Never increase, beyond what is necessary, the number of entities required to explain anything</td>
11
    <td>Never increase, beyond what is necessary, the number of entities required to explain anything</td>
12
  </tr>
13
</table>
14
15
<p>在 HTML 4.01 中,不赞成使用 td 元素的 nowrap 属性;在 XHTML 1.0 Strict DTD 中,不支持 td 元素的 nowrap 属性。</p>
16
17
</body>
18
</html>
19