Skip to content

Commit 2c72093

Browse files
committedApr 25, 2018
Don't use break-all
It causes some many weird problems. I tried `break-word` too, but it also causes problems, like `10%` being split up into two lines of `10` and `%` when using Flexbox.
1 parent a373054 commit 2c72093

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed
 

‎modern-base.css

-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@
1414
}
1515
}
1616

17-
/**
18-
* Break up words and URLs so they don't break your layout.
19-
*/
20-
21-
html {
22-
word-break: break-all;
23-
}
24-
2517
/**
2618
* Remove default spacing.
2719
*/

1 commit comments

Comments
 (1)

fregante commented on Dec 16, 2019

@fregante

I had this happen but then realized that that's the whole point. If it doesn't wrap, that % is already outside the box.

Please sign in to comment.