1 回答
TA贡献1786条经验 获得超13个赞
尝试-webkit-line-clamp如下:
.cortar {
width: 135px !important;
height: 20px;
padding: 20px;
border: 1px solid blue;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
-webkit-transition: all 1s;
-moz-transition: all 1s;
transition: all 1s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
/* from here */
box-sizing: border-box;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
如果它是编译的一些 scss 文件,您可能需要添加autoprefixer. 我在使用时遇到了这个问题angular。
.cortar {
width: 135px !important;
height: 20px;
padding: 20px;
border: 1px solid blue;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
-webkit-transition: all 1s;
-moz-transition: all 1s;
transition: all 1s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: -webkit-box;
-webkit-line-clamp: 2;
/* autoprefixer: off */
webkit-box-orient: vertical;
/* autoprefixer: on */
}
- 1 回答
- 0 关注
- 75 浏览
添加回答
举报