A tweet-sized debugger for visualizing your CSS layouts. Gives every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
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)})
If you're looking for a proper version that uses a set color per tag type, check out pesticide.io.
Tested from Chrome DevTools:
Tested from Firefox DevTools:
Tested from WebKit Nightlies (Safari):
Tested in IE:
Thanks to gregwhitworth for verifying.