Indents vs. Paragraphs
-
I’m trying to simultaneously introduce paragraph-indents and single-spacing between paragraphs.
For example, in style.css I have:
p { text-indent: 1.5em; margin-bottom: 0; padding-bottom:0; } p + p { text-indent: 1.5em; margin-top: 0; padding-top:0; }
However, what this means in practice is that when I have a simple
break (ie. single-spacing) in the inputted text for the page, the CSS treats that entire block of text as a single paragraph, and only indents the first line. When I put a blank line between each paragraph, it makes a new paragraph, however there is a full space between these paragraphs, breaking up the text.Basically, I know how to indent text, I know how to eliminate spaces between paragraphs, but I find it impossible to do both at the same time. I want to post novel excerpts and dialogue looks ridiculous when it’s so spaced-out. It also looks ridiculous when there are no indents, as it becomes difficult to tell when each character starts or stops speaking once one character says something long enough to force a text-wrap.
You can see an example here:
https://www.tinpanparadise.com/?page_id=29
- The topic ‘Indents vs. Paragraphs’ is closed to new replies.