I added overflow-wrap: break-word
to my css file to support long string.
Does anyone know how to enhance browser compatibility?
I added overflow-wrap: break-word
to my css file to support long string.
Does anyone know how to enhance browser compatibility?
The older name which you can use for backwards compatibility is word-wrap
. Be sure to put the older property first, like so:
word-wrap: break-word;
overflow-wrap: break-word;