Answers for "Applying an ellipsis with css"

CSS
1

Applying an ellipsis with css

p {
    display: -webkit-box;
    max-width: 200px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  	text-overflow: ellipsis;
}
Posted by: Guest on April-10-2022

Browse Popular Code Answers by Language