Quote:
Originally Posted by kovidgoyal
|
So I just installed 8.1.1, and I'm happy to report that my <style> tag now contains:
Code:
* {
/* Vendor-prefixed CSS properties for hyphenation. Keep -webkit first since
* some user agents also recognize -webkit properties and will apply them.
*/
-webkit-hyphens: auto;
-webkit-hyphenate-limit-after: 5;
-webkit-hyphenate-limit-before: 3;
-webkit-hyphenate-limit-chars: 8 3 5;
-webkit-hyphenate-limit-lines: 2;
/* CSS4 standard properties for hyphenation. If a property isn't represented
* in the standard, don't put a vendor-prefixed property for it above.
*/
hyphens: auto;
hyphenate-limit-chars: 8 3 5;
hyphenate-limit-lines: 2;
hyphenate-limit-last: page;
}
The bad news, unfortunately, is that the hyphenation still isn't working for some reason? Clearly this is above my pay grade, but I'm definitely confused... It used to work with KoboTouchExtended. Anything I can do or look at to help troubleshoot?
Thank you!!