Skip to content

Instantly share code, notes, and snippets.

@jackrusher
Created September 1, 2012 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackrusher/3562131 to your computer and use it in GitHub Desktop.
Save jackrusher/3562131 to your computer and use it in GitHub Desktop.
CSS to outline all elements on the page in depth-sensitive colors
* { outline: 1px dotted red; } * * { outline: 1px dotted green;} * * * { outline: 1px dotted orange;} * * * * { outline: 1px dotted blue;} * * * * * { outline: 1px solid fuchsia;} * * * * * * { outline: 1px solid teal;} * * * * * * * { outline: 1px solid indigo;} * * * * * * * * { outline: 1px solid brown;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment