Skip to content

Instantly share code, notes, and snippets.

@lean8086
Created November 7, 2012 03:05
Show Gist options
  • Save lean8086/4029359 to your computer and use it in GitHub Desktop.
Save lean8086/4029359 to your computer and use it in GitHub Desktop.
Getting "1em" in pixels in JavaScript
#em {
width: 1em;
visibility: hidden;
pointer-events: none;
position: absolute;
}
<div id="em"></div>
// Also works with offsetWidth and scrollWidth
var em = document.getElementById('em').clientWidth;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment