Answers for "truncate multiline text"

CSS
0

truncate multiline text

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;
}
Posted by: Guest on February-02-2022

Browse Popular Code Answers by Language