1、自动换行
div{ word-wrap:break-word; word-break:normal; }
复制
2、强制不换行
div{ white-space:nowrap; }
复制
3、强制英文单词换行
div{ word-break:break-all; }
复制
4、单行文本不换行多余文本显示省略号
div{ width:200px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
复制
5、多行文本超出隐藏多余文本显示省略号
div{ display:-webkit-box; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:3; -webkit-box-orient:vertical; }
复制
6、table表格中单元格单行文本不换行
table{ table-layout:fixed; } table tr td{ width:60%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
复制
请读者选择性使用,感觉有用点个关注,我将持续更新