Skip to content

Instantly share code, notes, and snippets.

@yoriiis
Last active June 25, 2020 02:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yoriiis/4c1a47b13003346810de0b559cd6d45e to your computer and use it in GitHub Desktop.
Save yoriiis/4c1a47b13003346810de0b559cd6d45e to your computer and use it in GitHub Desktop.
CSS selectors tips
/*
* CSS debug tips
* Inspired by @argyleink
*/
/* Debug images without "width" or "height" attributes */
img:not([width]), img:not([height]) {
outline: 2px dotted red;
}
/* Debug images without "alt" attribute with CSS */
img:not([alt]) {
outline: 2px dotted red;
}
/* Debug lists that have something other than an "<li>" inside */
:is(ul, ol) > *:not(li) {
outline: 2px dotted red;
}
/* Debug links with no "href", an empty "href" or a "#" "href" */
a:is(:not([href]), [href=""], [href="#"]){
outline: 2px dotted red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment