Hi everyone! Please tell me how can I make my repeating group word was transferred syllabically, and not transferred to a new line because it does not fit on the previous line?
You can’t. The reason why Microsoft Word or other text tools can handle it is because they “understand” grammar. Bubble would need an attached dictionary in its code in order to allow you to break the words syllabically.
Maybe you can tell me how to do it?
You’d either need to find a plugin or build one yourself (difficulty: high).
You could also achieve something that may solve the problem differently using text-align justify…
You’d need to inject some CSS to do that.
In fact your are looking for CSS hyphens property.
#yourElementId {
-webkit-hyphens: auto !important;
-moz-hyphens: auto !important;
-ms-hyphens: auto !important;
hyphens: auto !important;
}
But keep in mind that this property is based on the document’s language (lang property) and also is not supported by all browsers. In some browsers just some languages are supported.
Sorry, but I don’t understand how to do it
Try this: “Breaking” words syllabically using CSS hyphen property
Try resizing the screen to check its behavior.
Thank you! I’ll give it a try.