HTML 参考手册
HTML <th> nowrap 属性
带有 nowrap 属性的表头单元
源代码:
点击运行 »
<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>
运行结果:
点击运行 »