wrote:
wrote:
Hi Fabio,
Are you sure you are defining the CSS on the webscreen CSS editor?
If yes and if its still not working - one possibility is that the CSS is being overridden by OutSystems.
You can in that case try:
[id$="MainContent"] {
word-wrap: break-word !important;
}
or
div.content-middle {
word-wrap: break-word !important;
}
Managed to figure it out, was able to make it work with
div.content-middle {
word-break: break-word;
}
but remembered if I had a big worth on the margin of the cell it would break it, wouldn't make sense.
So I edited the gigantic field I did without white spaces and
div.content-middle {
word-wrap: break-word;
}
Worked! Your solution worked all along, but since the field didn't have a single white space it would never break!
Thank you for your help!
Welcome.