Skip to content

Instantly share code, notes, and snippets.

@mrtnbroder
Last active August 29, 2015 14:17
Show Gist options
  • Save mrtnbroder/c6325d1d5fde59f57ce1 to your computer and use it in GitHub Desktop.
Save mrtnbroder/c6325d1d5fde59f57ce1 to your computer and use it in GitHub Desktop.
find nodes with subpixel height
var nodes = document.querySelectorAll('*');
var heights = _.filter(nodes, function(node) {
var height = parseFloat(node.style.height);
if ((height % 1) !== 0 && !isNaN(height)) {
return true;
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment