Hi,
we need to turn on automatic hyphenation for a paragraph.
How can this be done?
Horrido,
Thomas
Hi,
we need to turn on automatic hyphenation for a paragraph.
How can this be done?
Horrido,
Thomas
Hello Thomas,
You can create a class:
.hyphenate {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
Make sure that you defined your language, e.g.: lang=“en”, on your paragraph or article because it can only hyphenate in a specific language.
Best regards
Luciano
Hi Luciano,
thanks, that made it. Only
-moz-hyphens: auto;
was required for the style; thoe other ones seem to be for other HTML-rendering engines.
Horrido,
Thomas