Skip to content

Instantly share code, notes, and snippets.

@EminQasimov
Created May 21, 2020 09:19
Show Gist options
  • Save EminQasimov/2a62f9bbfb99ad1e63130fb0549816a3 to your computer and use it in GitHub Desktop.
Save EminQasimov/2a62f9bbfb99ad1e63130fb0549816a3 to your computer and use it in GitHub Desktop.
debug css hightlight elements with background colors
/* debug css */
body * {
background-color: rgba(255, 0, 0, 0.2);
}
body * * {
background-color: rgba(0, 255, 0, 0.2);
}
body * * * {
background-color: rgba(0, 0, 255, 0.2);
}
body * * * * {
background-color: rgba(255, 0, 255, 0.2);
}
body * * * * * {
background-color: rgba(0, 255, 255, 0.2);
}
body * * * * * * {
background-color: rgba(255, 255, 0, 0.2);
}
body * * * * * * * {
background-color: rgba(255, 0, 0, 0.2);
}
body * * * * * * * * {
background-color: rgba(0, 255, 0, 0.2);
}
body * * * * * * * * * {
background-color: rgba(0, 0, 255, 0.2);
}
body * * * * * * * * * * {
background-color: rgba(0, 0, 255, 0.2);
}
body * * * * * * * * * * * {
background-color: rgba(0, 0, 255, 0.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment