Quote:
Originally Posted by Deobulakenyo
How do i do this (body text in books is set to justify) in Calibre?
|
This is what I use for the body style in CSS. Notice the line that justifies the text.
Code:
body {
widows: 1;
orphans: 1;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
text-align: justify;
}