简单教程
提交运行
代码编辑器:
<p>使用 nowrap 属性:</p> <table border="1"> <tr> <th>Month</th> <th nowrap>My Savings for a new car</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <p>使用 nowrap 属性:</p> <table border="1"> <tr> <th>Month</th> <th>My Savings for a new car</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <p><b>注意:</b> 你需要缩放浏览器窗口。</p> <p>在 HTML 4中 nowrap 属性已废弃,HTML5 已不支持该属性,可以使用 CSS 代替。</p> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: