Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dfrankland/51ecf4d34e420572a08232298602fae6 to your computer and use it in GitHub Desktop.
Save dfrankland/51ecf4d34e420572a08232298602fae6 to your computer and use it in GitHub Desktop.
The simplest feature-detect for flexbox?
/*
* Trying to feature-detect (very naive)
* CSS Flexbox support.
* - Only most modern syntax
*
* Is this nonsense?
*/
(function NaiveFlexBoxSupport(d){
var f = "flex", e = d.createElement('b');
e.style.display = f;
return e.style.display == f;
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment