css单行和多行超过宽度 显示点点点

单行超出显示点点点

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

多行超出显示点点点

overflow: hidden;
width: 200px;
height: 36px;
display: -webkit-box;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;  /*2行末尾显示点点点*/
上一篇:认识python中__name__、程序主入口


下一篇:079.C++中的引用-引用做函数的返回值