如何在表格单元格中的连字符处换行文本?
我找到了 CSS 3 的 text-wrap 和 Overflow-wrap 属性,但它们似乎没有做任何事情。
http://www.w3schools.com/cssref/css3_pr_text-wrap.asp
如何在表格单元格内的连字符处换行文本?在 Chrome 14 上进行测试。
I found the text-wrap and overflow-wrap CSS 3 properties, but they don't seem to do anything.
http://www.w3schools.com/cssref/css3_pr_text-wrap.asp
How to wrap text at hyphens within a table cell? Testing on Chrome 14.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要建议的(非标准)CSS 3 文本
连字符
属性:请注意,仅在 FF、Chrome 和 Safari 中支持; IE 或 Opera 不支持它。
You want the proposed (non-standard) CSS 3 Text
hyphens
property:Note that this is only supported in FF, Chrome, and Safari; it is unsupported in IE or Opera.
您必须使用
table-layout:fixed
。在 Chrome 15 和 IE7 中测试。HTML:
CSS:
JS 小提琴:
http://jsfiddle.net/9ZjCy/1/
You must use
table-layout:fixed
. Tested in Chrome 15 and IE7.HTML:
CSS:
JS Fiddle:
http://jsfiddle.net/9ZjCy/1/