How to display 3 dots when text overflow div in height. I've found an example how to do it when text overflows div in width
.cut-text {
text-overflow: ellipsis;
overflow: hidden;
width: 160px;
height: 1.2em;
white-space: nowrap;
}
<div class="cut-text">
I like big butts and I can not lie
</div>
But i can't find how to display ... when text overflows div in height.
Any help much appreciated