Can I run into some issues with this code?
body {
word-wrap:break-word;
}
May be I should better add that rule to more specific selector?
UPD
I use it to solve problems with loooooooooooooooooooong words, that can appear anywhere and break layout.
looking at the comments in this issue of boilerplate/github, using
word-wrap:break-word;onhtmlelement has no particular drawbacks but it seems to have significant effects only on links element.Anyway to avoid unpredictable issues I would prefer use it only for
<a>elements (just a matter of preference)