I am trying to add ellipsis in column .I am using ionic framework with angular js .I am displaying data in column .But when data is more than 2 or two line it should show "..." or ellipsis .I google it found this solution
CSS word ellipsis ('...') after one or two lines
but it will not work the I found another solution this http://codepen.io/martinwolf/pen/qlFdp .it also not work for me
here is my code
http://plnkr.co/edit/BILpSThKHWZpKBqYIoQz?p=preview
.columnClass {
margin: 0 auto;
line-height: $line-height;
-webkit-line-clamp: 2
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
any update regarding this