I am using multiline truncation sass mixin. It doesnot show '...' in chrome. While debugging I got -webkit-box-orient: vertical; is not getting applied.
Below is the code:
overflow: hidden;
max-height: $font-size*$line-height*$lines-to-show; /* Fallback for non-webkit */
display: -webkit-box;
-webkit-line-clamp: $lines-to-show;
-webkit-box-orient: vertical;
// Solution for Opera
text-overflow: -o-ellipsis-lastline;
font-size: $font-size;
line-height: $line-height;
text-overflow: ellipsis;
Thanks in advance for help