Firefox中的自动换行或分词功能无效

时间:2014-06-26 09:34:26

标签: html css html5 css3

word-wrap:break-word;word-break:break-all;不会在这个小提琴中起作用:http://jsfiddle.net/C5bNq/5/

他们在Chrome中做过......有什么想法吗? 这些问题的建议没有成功:word-wrap break-word does not work in this example

1 个答案:

答案 0 :(得分:0)

一般来说这是解决方案我是你的代码包含在div类break-word

DEMO

<强> CSS

.break-word {
-ms-word-break: break-all;
-ms-word-wrap: break-all;
-webkit-word-break: break-word;
-webkit-word-wrap: break-word;
word-break: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}