单行文本,超出用省略号代替
.txt {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
多行文本,超出用省略号代替
.txt {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}