Details :
I have problem in css text-overflow. Actually my div contains large text content but I want it to display only four lines and I want to remove this overlapping content. How could I achieve this?
My overlapping content
CSS Code :
.divclass {
width:90%;
display: block;
float: right;
text-overflow: ellipsis;
overflow:hidden;
}