I have an issue with CSS ellipsis for multiline text aligned to right. Solution that I have found so far works for the text-align: left;
but not text-align: right
. Link to code pen here: https://codepen.io/l-k-sfr-jt/pen/dyBvrrW.
CSS code for multine that works align-right – default.
p {
-webkit-line-clamp: 3;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
}
Thank for any suggestions.