效果演示代码:
firefox-break-word if there were less sympathy in the world, there would be less trouble in the world. ( o. wilde )
[ctrl+a 全选 注:如需引入外部js需刷新才能执行]
css控制强制换行/强制换行
强制不换行
div{
white-space:nowrap;
}
自动换行
div{
word-wrap: break-word;
word-break: normal;
}
强制英文单词断行
div{
word-break:break-all;
}