css text clamp code example

Example 1: css line-clamp

.line-clamp{
  	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
  	overflow: hidden;
}

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
}

Example 3: css clamp

width: clamp(400px, 60vw, 600px);

div {  
  font-size: clamp(1.1rem, 0.7153rem + 1.6368vw, 1.5rem);
}

.logo {    
  width: clamp(350px, 75%, 800px);    
}
And the font’s CSS is:
.title {     
  font-size: clamp(1.5rem, 5vw, 4rem);  
}