p {
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}
p {
width:100%;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
background:#fff;
position:absolute;
}
// I did with just the solution down:
p {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}