CSS `ch` Unit
.prose {
max-width: 65ch;
line-height: 1.5;
}
Use the `ch` unit for typography to limit line width. 1ch is roughly the width of the "0" character. `max-width: 65ch` creates the ideal reading length.
Back to Tips