How can I get proper ellipsis to show with -webkit-line-clamp
when using text-align:justify
? It's functioning correctly with text-align:left/right
.
Does anyone have any suggestions or tricks?
div {
text-align: justify;
width:150px;
padding: 0 5px;
line-height: 18px;
display: -webkit-box;
display: -moz-box;
display: -ms-box;
max-width: 100%;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
<div>Why Line Clamp is not working with text align justify</div>