How do I get the ellipsis in second line with pure CSS?
here is the CSS am using now
.desc p{
display: table-cell;
width:90%;
vertical-align: middle;
height:30px ;
overflow: hidden;
text-overflow: ellipsis;
}

