Quote:
Originally Posted by dwanthny
I just converted a epub, that uses css top and bottom paragraph margins to create the space between paragraphs, to mobi and the paragraph spacing still exists in the mobi book.
|
I would have thought that that was the proper way to control paragraph spacing (as opposed to Hard spacing like <br /> and <p> </p> )
using an extra CSS to set (brute force) All Margins and padding to 0
p {margin: 0; padding: 0}
(there are finer levels of this available

)