Skip to content

Instantly share code, notes, and snippets.

@mminguezz
Last active February 2, 2016 16:27
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 mminguezz/2e8a9e7b87c71a9ec861 to your computer and use it in GitHub Desktop.
Save mminguezz/2e8a9e7b87c71a9ec861 to your computer and use it in GitHub Desktop.
function isStyleSupported(el, property) {
return el.style[property] != undefined;
}
var testEl = document.getElementById('test');
testEl.innerHTML = (isStyleSupported(testEl, 'flexWrap')) ? "Flex Wrap is supported" : "Flex Wrap is NOT supported";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment