Answers for "max chars css"

CSS
3

css limit text length

/*CSS to limit the text length inside a div*/
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
Posted by: Guest on July-01-2020
0

how to define max number of character for a paragraph css

p {
  overflow: hidden;
  max-width: 75ch;
}
Posted by: Guest on October-14-2021
0

how to define max number of character for a paragraph css

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

Browse Popular Code Answers by Language