body { word-wrap: break-word;}
I\'ve been using that code (above) to fit the text in the body into it\'s container. However what I don
body
I use this Code for our website to stop the word-breaking:
body { -ms-hyphens: none; -webkit-hyphens: none; hyphens: none; }