I have an odd problem: I have a Bootstrap 3/Wordpress 3.6.1 site with 3 narrow - ~200px wide - paragraphs of text in the centre and DON'T want hyphenation. In Safari and Firefox it's fine, but in Chrome (Version 30) the text hyphenates automagically. It's not a Wordpress function as I wrote the functions file, and I don't think it's a bootstrap 3 thing, but just to be sure I set 'hyphens' to 'none' in the mixins.
I have tried turning it off in CSS with
word-wrap: break-word;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
-o-hyphens: none;
hyphens: none;
When I search for it I get a lot of pages describing how to enable it, but none describing how to disable it.