CSS 设置超出文本溢出省略
/* 超出一行隐藏 */
.custom-ellipsis-1 {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* 超出两行隐藏 */
.custom-ellipsis-2 {
display: -webkit-box;
overflow: hidden;
white-space: normal !important;
text-overflow: ellipsis;
word-wrap: break-word;
-webkit-line-clamp: 2;
/*! autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */
}
明知是梦,却不愿醒。

浙公网安备 33010602011771号