How to use text overflow to make just the last line with ellipsis in the "div"? So wrap the lines at the end of the line in the div and the last have to have ellipsis. And other problem is that the letters are wrapped not in whole. I get the letters fragmented. I need to get whole letters in the end of the line. End whole lines in vertical context.
.someclass {
width: 200px;
height:200px;
overflow: hidden;
text-overflow: ellipsis;
}
<div class="someclass">
AAAAAA
</div>