Paragraph CSS for EPUB
I have been converting most of my electronic books from PDF to EPUB. Using Sigil makes editing the EPUB files very easy. One trick I have experimented with in the EPUB is paragraph spacing and indentation. What appeals to me in a book is a slightly room feel with paragraph indentaiton. I personally don't like non-indented paragraphs even if there is space added between paragraphs.
The 15px; indentation is enough to set-off new paragraphs visually, but adding a small amount of space (5px) below each paragraph makes the book seem not too cramped and a bit roomy.
p {text-indent:15px;
margin-left:0px;
margin-right:0px;
margin-top:0px;
margin-bottom:5px;
text-align: justify; }
The 15px; indentation is enough to set-off new paragraphs visually, but adding a small amount of space (5px) below each paragraph makes the book seem not too cramped and a bit roomy.