Ambiera ForumDiscussions, Help and Support. |
|
|
|||||
|
Is automatic hyphenation with separators possible in the body text? |
||||
|
You can right-click any word, select "Insert Text Symbol" -> "Soft Hyphen". That causes to show the hyphen in RocketCake always, but when you click "Preview" it only uses it when the words needs to be broken. BUT you can also tell the browser to do automatic hyphenation for all text. For that, in RocketCake, just click View -> HTML Code of page -> additional CSS -> and enter
|
||||
|
Header html <html lang="de"> css /* hyphens */ -moz-hyphens: auto; -o-hyphens: auto; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; |
||||
|
|