Quote:
Originally Posted by JSWolf
Yes, you can disable hyphenation.
Code:
body {
-epub-hyphens: none;
adobe-hyphenate: none;
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
That's all you need to do. Add that to your body style in CSS and no hyphens.
|
Thank you, that's good to know.