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 */
}
posted @ 2020-12-03 10:11  结城明日奈i  阅读(106)  评论(0)    收藏  举报