Thank you davidfor for your answer.
You're right: My initial attempt with "p:first-child" would work only in cases where all paragraphs are inside an enclosing element like "div", which is not always the case.
Based on your solution with adjacent siblings (and after some experiments) I finally get good results with the following:
"Remove spacing between paragraphs" (checked)
"Indent size" (set to "No change")
Extra CSS:
p {text-indent: 0}
p + p {text-indent: 1.5em}
Setting the indent size in the dialog box to "No change" seems to be essential, otherwise the given value will override the value given in the extra CSS.
|