Quote:
Originally Posted by mzmm
i know that in iBooks i can set
Code:
-webkit-hyphens:0; hyphens:0;
, but of course this doesn't work on just about everything else out there.
|
For Adobe readers you can add adobe-hyphenate, but I think the correct value is "none:
Code:
h1 {
-webkit-hyphens: none;
adobe-hyphenate: none;
hyphens: none;
}
recommended for titles and other "display" stuff.