0
Word-wrapping on Firefox
Firefox doesn't support white-space and word-wrap propeety. Any ideas for alternative solutions? :)
2 Respostas
+ 2
word wrap:
http://caniuse.com/#feat=wordwrap
white space:
https://developer.mozilla.org/ru/docs/Web/CSS/white-space?v=control
Both of them supported
+ 1
From different things I have read, the white space issue you speak about here can be resolved using the following:
white-space: -moz-pre-wrap; /* Firefox */
pre-wrap Sequences of whitespace are then preserved. Lines are instead broken at newline characters, at
, and as necessary to fill line boxes.