1.单行文字超过
.textOmit {
width: 80rpx;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
2.多行文字超过显示
.testDiv {
width: 200px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; //显示几行文字
overflow: hidden;
}