CSS 控制文本显示行数,并添加省略号
ON THIS PAGE
单行
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
多行
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
在使用 autoprefixer的时候,部分代码会在转换的过程中丢失,比如上面的 -webkit-box-orient: vertical;
这个时候需要添加代码注释忽略转换,防止代码块被删除:
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
2020-08-30