-webkit-box-orient: vertical;在webpack上失效,可使用如下方式解決webpack
.ifc-header-content-comment { text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; /* autoprefixer: off */ -webkit-box-orient: vertical; /* autoprefixer: on */ height: 50px; line-height: 25px; }
或者是
.ifc-header-content-comment {
text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; /* autoprefixer: ignore next */ -webkit-box-orient: vertical; height: 50px; line-height: 25px; }