Answers for "webkit line clamp 3"

CSS
0

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
}
Posted by: Guest on January-03-2021
0

webkit-line-clamp: 2;

.wrapper {
  padding: 20px;
  background: #eaeaea;
  max-width: 400px;
  margin: 50px auto;
}

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

.demo-2 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
}
Posted by: Guest on September-17-2021

Browse Popular Code Answers by Language