Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在表 td 如何适合正确的文本如何避免重叠和溢出
实际输出?
实际代码这个
<td align="left" valign="top"> sample text <td>
如何正确调整文本?
我可以建议 CSSword-wrap:break-word吗?
word-wrap:break-word
这是一个小提琴,在 css 中删除 //,运行,看看有什么不同。
http://jsfiddle.net/kWNuu/9/
删除该nowrap属性将强制文本保留在表格中。
nowrap
如果我理解正确,您想要这样的东西,您所需要的只是 td 的宽度
<td width= "200">
http://jsfiddle.net/kWNuu/1/
而不是 nowrap="nowrap" 替换 white-space: "nowrap" 它为你工作