Why -webkit-line-clamp
is not showing proper ellipsis with text-align:justify
. It's working fine with text-align:left/right
.
Please suggest any trick.
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>