IE7 在自动换行上添加空格
我在表格单元格内有一个 div。 div 有一个自动换行:break-word。它在 IE8 和 Mozilla 中显示良好,但在 IE7 中,表格单元格延伸到长单词的假定宽度,而实际上该宽度已被破坏。结果,我在带有文本的 div 旁边有一个很大的空白,这扩展了表格宽度。
I have a div inside a table cell. The div has a word-wrap:break-word. It displays fine in IE8 and Mozilla, however in IE7, the table cell extends to the assumed width of the long word that in fact is broken. As a result I have a large white space next to the div with the text, which extends the table width.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嵌套在表格单元格中的容器div上的溢出:隐藏解决了问题
overflow:hidden on the container div nested in the table cell solved the problem
在 div 的 CSS 中添加:
这将为您提供正确的自动换行。
To the CSS of the div, add:
This should give you proper word wrap.