/* This file is a compilation of all the code at http://24ways.org/2007/diagnostic-styling */

/* Add the grid background to Blueprint containers */
.container {
	background: url(blueprint/lib/grid.png);
}

/* Highlight deprecated HTML elements */
font, b, i, blink, center {outline: 5px solid red;}

/* Highlight elements with inline styles */
*[style], font, center {outline: 5px solid red;}

/* Highlight img tags missing alt or title attributes */
img[alt=""] {border: 3px dotted red;}
img[title=""] {outline: 3px dotted fuchsia;}

/* Not a Problem */
img:not([alt]) {border: 5px solid red;}
img[alt=""] {border: 3px dotted red;}
img[title=""] {outline: 3px dotted fuchsia;}
img:not([alt]) {border: 5px solid red;}
img:not([title]) {outline: 5px solid fuchsia;}
table[summary=""] {outline: 3px dotted red;}
table:not([summary]) {outline: 5px solid red;}
th {border: 2px solid red;}
th[scope="col"], th[scope="row"] {border: none;}
a[href]:not([title]) {border: 5px solid red;}
a[title=""] {outline: 3px dotted red;}
a[href="#"] {background: lime;}
a[href=""] {background: fuchsia;}