css 单行省略号...和多行省略... 解决方法
2017-08-25 本文已影响0人
mindy1031
单行省略...一贯写法:
width:数值;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
![](https://img.haomeiwen.com/i7578641/0d37e8c5a468a2d9.png)
多行省略不是只有后端可以设置,我们前端也可以。。。
溢出时:
![](https://img.haomeiwen.com/i7578641/dac5c30d090a36b0.png)
解决方法:
width:数值;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
word-break:break-all;
overflow:hidden;
![](https://img.haomeiwen.com/i7578641/fbe629acaa278d86.png)