Archived topic
Maximum characters per line in paragraph
3 replies · Started by James on June 6, 2019
Viewing posts 1–4 of 4
Hi,
I need to set the maximum characters per line in all paragraphs to a specific number, such as 65 max characters per line. How do I do this as it is important for me.
Many thanks.
Hi there,
so if you want all of your paragraphs to be roughly 65 characters long (Based on the width of '0' and without spaces.) then add this CSS:
p {
max-width: 65ch;
}
Thanks much appreciated :)
You're welcome
This archived topic is closed to new replies.