UNPKG

324 BCSSView Raw
1.rowBreakWords {
2 /* These are technically the same, but use both */
3 overflow-wrap: break-word;
4 word-wrap: break-word;
5
6 -ms-word-break: break-all;
7 /* This is the dangerous one in WebKit, as it breaks things wherever */
8 word-break: break-all;
9 /* Instead use this non-standard one: */
10 word-break: break-word;
11}