CSS Layout Testing Snippet

As a pixel perfectionist, I like knowing that my layout and elements are exactly as I imagine they should be. I usually find myself adding random red backgrounds to certain elements while I am building my layout. I found this snippet of code to be immensely useful while testing:

* { background: rgba(1, 1, 1, 0.1); }
Back to all the things!