Quote:
Originally Posted by dwig
... also, you should follow the Kindle Publishing Guidelines and not specify a font or font size for the main text.
In addition, the indent along with top and bottom margins should be specified in em units rather than a fixed size unit so that the indent remains proportional to the text size when the reader chooses a different base text size. This would be more appropriate:
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0;
margin-right:0;
margin-bottom:1em;
margin-left:0;
text-align:justify;
text-indent: 0;
}
|
Code:
p.MsoNormal, li.MsoNormal, div.MsoNormal {
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
text-align: justify;
text-indent: 1.2em
}
That would be better for a paragraph that one wants indented. Also, removing the excess space between the paragraphs makes it look nicer.