Skip to content

Instantly share code, notes, and snippets.

@ssadler
Last active August 29, 2015 14:06
Show Gist options
  • Save ssadler/be8cb030dda76c69d94d to your computer and use it in GitHub Desktop.
Save ssadler/be8cb030dda76c69d94d to your computer and use it in GitHub Desktop.
var nodes = document.querySelectorAll(".js-setLabelWidth");
var elementWidths = [];
var widths = nodes.map(function(node) {
var width = getComputedStyle(node)["width"];
return parseInt(width, 10);
});
var maxWidth = (widths.reduce(Math.max, 0) + 1) / 16;
nodes.forEach(function(node) {
node.style.width = maxWidth + "rem";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment