在我的Angular应用中(我的版本为4.3.1),我在多行之后添加了CSS省略号。
为此,我在Sass中使用以下CSS代码。
.ellipsis {
-webkit-box-orient: vertical;
display: block;
display: -webkit-box;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
出于某种原因,盒装式线条仅通过移线从样式中删除,从而导致省略号不起作用。这似乎发生在Angular和Ionic应用程序中。
没有答案对我有用。
My solution was to put the
-webkit-box-orient: vertical
as inline-styling and the rest as a class. Not elegant, but it works.