我使用以下样式表代码在表的列中实现自动换行:
<style type="text/css">
table,td {
table-layout: fixed;
}
</style>
此代码在firefox中运行良好,我可以实现自动换行,但是当我在Chrome浏览器中尝试使用它时,它无效。
您能否建议如何在所有浏览器(IE,Firefox,Chrome)中使用它
答案 0 :(得分:2)
可能会将word-wrap: break-word
属性添加到css
答案 1 :(得分:2)
尝试将此属性设为css
word-break: break-all;