dominikbulaj
10/16/2014 - 6:43 PM

CSS Layout Debuggerhttps://gist.github.com/addyosmani/fd3999ea7fce242756b1

// SOURCE: https://gist.github.com/addyosmani/fd3999ea7fce242756b1
 
// Use $$ if your browser aliases it:
// ~ 108 byte version
[].forEach.call($$("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)})


// Using document.querySelectorAll:
// ~ 131 byte version
[].forEach.call(document.querySelectorAll("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)})