css clamp custom.css code example

Example 1: text-overflow: ellipsis; 2 line

display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

Example 2: webkit-line-clamp browser support

// Truncate text when it exceeds 3 lines of text using -webkit-line-clamp

p {
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3 // change 3 with any number of lines you want to set
}

Tags:

Css Example