Skip to content

Instantly share code, notes, and snippets.

@julzmon
Last active January 6, 2016 00:58
Show Gist options
  • Save julzmon/1cbeb163877fa263b708 to your computer and use it in GitHub Desktop.
Save julzmon/1cbeb163877fa263b708 to your computer and use it in GitHub Desktop.
Check for flexbox
var doc = document.body || document.documentElement;
var style = doc.style;
if ( style.webkitFlexWrap == '' ||
style.msFlexWrap == '' ||
style.flexWrap == '' ) {
doc.className += " supports-flex";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment