Skip to content

Instantly share code, notes, and snippets.

@starlightsys
Last active August 29, 2015 14:03
Show Gist options
  • Save starlightsys/aa7519b4b8855f6bdc0d to your computer and use it in GitHub Desktop.
Save starlightsys/aa7519b4b8855f6bdc0d to your computer and use it in GitHub Desktop.
Modernizr test for availability of root ems (rem) sizing.
Modernizr.addTest "rem", ->
elem = document.createElement "div"
elem.setAttribute "style", "font-size: 1rem"
return elem.style.fontSize == "1rem"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment