Answers for "css text trim"

CSS
0

css trim text

width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
Posted by: Guest on July-19-2021
1

need short long paragraph css

//Line Clampin’ (Truncating Multiple Line Text)
.paragraph {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  overflow: hidden;
}
Posted by: Guest on September-15-2020

Browse Popular Code Answers by Language