Created
June 18, 2013 16:48
-
-
Save dylanhthomas/5807106 to your computer and use it in GitHub Desktop.
CSS - Spot unsized images during development.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add this to stylesheet to find all unsized images | |
// Via 37signals http://37signals.com/svn/posts/2979-css-tip-spot-unsized-images-during-development | |
img:not([width]):not([height]) { | |
border: 2px solid red !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment