I'm trying to convert some ePub books into mobi to be sent to Kindle for iOS but seems the application has some kind of bug that ignores this css property.
Original ePub <p> has in style.css property of "text-indent" set to 1.5em. Same ebook in Kindle e-ink devices and Android Kindle app formats right the first line in a paragraph, but Kindle for iOS not and is shown without any indentation.
This is the css part:
Quote:
p {
margin: 0;
text-align: justify;
text-indent: 1.5em;
line-height: 125%;
}
|
Any solution to this? Thanks in advance.