Measure or line length is the distance between the left and right edges of a text block. Overly long lines are a common problem, but they're easy to correct. Shorter lines will make a big difference in the legibility and professionalism of your layout.
<p class="ll-narrow">lorem ipsum ...</p>
<p class="ll-medium">lorem ipsum ...</p> <p class="llm">lorem ipsum ...</p>
<p class="ll-wide">lorem ipsum ...</p>
/* generate: container-rule */ .ll-narrow { max-width: 45ch; } .ll-medium { max-width: 66ch; } .ll-wide { max-width: 80ch; } .llm { max-width: 66ch; } /* end generate */