@JSWolf I'm curious. What is the advantage of including the line, text-align: justify;
p {
text-indent: 1em;
text-align: justify;
font-size: 1.15em;
font-family: Arial;
margin-left: 0;
margin-right: 0;
margin-top: 0;
margin-bottom: 0.00em;
}
in the css for paragraphs as opposed to leaving the line out completely
p {
text-indent: 1em;
font-size: 1.15em;
font-family: Arial;
margin-left: 0;
margin-right: 0;
margin-top: 0;
margin-bottom: 0.00em;
}
and allowing each device to format the paragraphs.
For the same reason why include the font-family line?
Both of these lines (line text-align: justify and font-family: Arial) cause me to edit or convert the epub before adding them to my library.
|