how to define max number of character for a paragraph css

63

p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
p {
  overflow: hidden;
  max-width: 75ch;
}

Comments

Submit
0 Comments