Skip to content

Instantly share code, notes, and snippets.

@joshuabaker
Created August 23, 2013 15:27
Show Gist options
  • Save joshuabaker/6320601 to your computer and use it in GitHub Desktop.
Save joshuabaker/6320601 to your computer and use it in GitHub Desktop.
JavaScript test for CSS3 columns. Helpful to avoid having to use Modernizr.
(function() {
var style = document.createElement('div').style;
return ('columnCount' in style || 'MozColumnCount' in style || 'WebkitColumnCount' in style);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment