Skip to content

Instantly share code, notes, and snippets.

@timonweb
Created December 6, 2013 17:44
Show Gist options
  • Select an option

  • Save timonweb/7829056 to your computer and use it in GitHub Desktop.

Select an option

Save timonweb/7829056 to your computer and use it in GitHub Desktop.
Prevent Content From Breaking Out of Container
fieldset {
-ms-word-break: break-all;
word-break: break-all;
/* Non standard for webkit */
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment