Quote:
Originally Posted by Uncle Robin
Thanks jackie_w, I will try that. I've posted in the linked styles thread that pasting an entire CSS template from that thread and changing the line-spacing value did exactly nothing. Perhaps just adding a line-height value will do the trick.
|
For line-height you will need to add !important to the style.
(This is because many css selectors in ebooks have their own line height.)
Code:
body {line-height:1.15 !important}
https://www.geeksforgeeks.org/how-to...ortant-in-css/
Quote:
The !important property in CSS is used to provide more weight (importance) than normal property. In CSS, the !important means that “this is important”, ignore all the subsequent rules, and apply !important rule and the !important keyword must be placed at the end of the line, immediately before the semicolon.
|
bernie