编程宝库 - 技术改变世界
编程宝库
编程宝库提供了 JS 在线测试工具,可在线测试 JavaScript 代码,你可以在代码编辑器中输入 JavaScript 代码并点击运行查看结果。
源代码
点击运行
<html> <body> <p>请适当缩小浏览器窗口,就可以看到该属性的效果:</p> <p>不带有 nowrap 属性的表格:</p> <table border="1"> <tr> <th>Company in USA</th> <th>--------------------- Address --------------------</th> </tr> <tr> <td>Apple, Inc.</td> <td>1 Infinite Loop Cupertino, CA 95014</td> </tr> <tr> <td>Google, Inc.</td> <td>1600 Amphitheatre Parkway Mountain View, CA 94043</td> </tr> </table> <p>带有 nowrap 属性的表格:</p> <table border="1"> <tr> <th>Company in USA</th> <th nowrap="nowrap">--------------------- Address --------------------</th> </tr> <tr> <td>Apple, Inc.</td> <td>1 Infinite Loop Cupertino, CA 95014</td> </tr> <tr> <td>Google, Inc.</td> <td>1600 Amphitheatre Parkway Mountain View, CA 94043</td> </tr> </table> </body> </html>
运行结果