发布网友 发布时间:2022-04-06 13:03
共1个回答
热心网友 时间:2022-04-06 14:32
HTML里面加了一个样式属性:word-break: break-all,可以实现表格的自动换行,具体参考代码如下: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>table内的td内容不换行</title> <style type="text/css"> <!-- body{ font-size:12px;} .breakLine{word-break: break-all;} --> </style> </head> <body> <table width="400"> <tr> <td width="90" height="30">处理人工号:</td> <td width="410" class="breakLine">001156,001157,001145,001149,001178,001123,001140,001167,001168,001134,001135</td> </tr> </table> </body> </html>word-break属性简单介绍如下:语法:word-break : normal | break-all | keep-all取值: normal : 默认值。允许在词间换行 break-all : 该行为与亚洲语言的 normal 相同。也允许非亚洲语言文本行的任意字内断开。该值适合包含一些非亚洲文本的亚洲文本 keep-all : 与所有非亚洲语言的 normal 相同。