T
Thierry Ciot
Guest
Typically this wouldn’t happen as there spaces between words. In this specific case, you are against the overflow rules in an html element. Depending on what you want to achieve, you can either add the style overflow-x : scroll ; or the style overflow-x : hidden ; or word-break: break-all; word-wrap: break-word; For 4.0.2, we are fixing it by adding a css class to html component like this: /* Styles for cell type: html component */ .rbs-htmlComponent { word-break: break-all; word-wrap: break-word; } So it can it overridden and/or additional styles can be added by simply overriding in custom header on a per app basis and you won’t have to change/edit each html component. Thierry.
Continue reading...
Continue reading...