Answers for "how to set the limit of words in a paragraph css"

CSS
0

css text limit

p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
Posted by: Guest on May-17-2021

Code answers related to "how to set the limit of words in a paragraph css"

Browse Popular Code Answers by Language