Skip to content

Instantly share code, notes, and snippets.

@gkats
Created February 27, 2015 11:43
Show Gist options
  • Save gkats/a924847928b076467ae9 to your computer and use it in GitHub Desktop.
Save gkats/a924847928b076467ae9 to your computer and use it in GitHub Desktop.
CSS Layout Debugger
// https://gist.github.com/addyosmani/fd3999ea7fce242756b1
// Using $$
[].forEach.call($$("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)})
// Using querySelectorAll
[].forEach.call(document.querySelectorAll("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment