View Single Post
Old 12-10-2012, 03:37 PM   #3
btab
Junior Member
btab began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jul 2011
Location: Austria
Device: Sony PRS-T1
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.
btab is offline   Reply With Quote