表格table中的td单元格中,内容过长会自动换行,但换行后的效果有时很不美观,为了不让其换行,可有如下操作:
在td标签中有nowrap属性 设置其为:
<td nowrap="nowrap">这里的字符串很长,但没关系,不会换行的。</td>
<style type="text/css"> td{ white-space: normal; } </style>