Skip to content

Instantly share code, notes, and snippets.

@dylanhthomas
Created June 18, 2013 16:48
Show Gist options
  • Save dylanhthomas/5807106 to your computer and use it in GitHub Desktop.
Save dylanhthomas/5807106 to your computer and use it in GitHub Desktop.
CSS - Spot unsized images during development.
// 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