I'm trying to do something that is vexing me. I have a text field that I am feeding a very long string to and I want it to word-wrap. So far I have tried putting this in a ui-template node.
.word-wrap {
color: rgb(74, 63, 196);
white-space: pre-wrap;
word-wrap: break-word;
}
Which changes the font color but nothing else. Sorry not too familiar with CSS yet.