I'd like my paragraphs not justified (flush left, ragged right) and I thought this User Stylesheet in the calibre ebook viewer would do that (as well as turn off widow/orphan control), but the paragraphs are still fully justified (flush left, flush right) in the calibre ebook viewer. What CSS should I be using?
Thank you!
body {
text-align: left;
widows: 0;
orphans: 0
}
|