Limiting the number of characters per line with CSS

后端 未结 7 1153
感情败类
感情败类 2020-12-13 18:38

I have a paragraph of text:

Lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum

相关标签:
7条回答
  • 2020-12-13 19:45

    Depending on what font you're using you can set max-width on the paragraph with a calculated value. It will not be exact, but I've found that in most cases that does not matter.

    p {
      max-width: calc(30em * 0.5);
    }
    

    The number you multiply with depends on what font it is, and how much a character takes up in a em square. More characters = less accurate.

    0 讨论(0)
提交回复
热议问题