I currently have a table with a row that displays like this:
word
hi Someword/AnotherWord/LastWord
My goal is to use CSS to break the text at the "/" symbol like this:
hi<br>Someword<br>/AnotherWord<br>/LastWord
However, the current CSS I am using results in the text flowing outside of the table cell. I have tried various solutions such as:
- word-wrap: break-word;
- word-break: break-all;
But they both end up breaking in the middle of the words. Is there a specific way to break at the "/" only?