Skip to content

Instantly share code, notes, and snippets.

@tsq
Created June 22, 2017 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsq/a089dc199a3b55ba04927c41933b3463 to your computer and use it in GitHub Desktop.
Save tsq/a089dc199a3b55ba04927c41933b3463 to your computer and use it in GitHub Desktop.
using js to detect support of flexbox
var d = document.documentElement.style
if (('flexWrap' in d) || ('WebkitFlexWrap' in d) || ('msFlexWrap' in d)){
alert('ok');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment