Created
May 21, 2020 09:19
-
-
Save EminQasimov/2a62f9bbfb99ad1e63130fb0549816a3 to your computer and use it in GitHub Desktop.
debug css hightlight elements with background colors
This file contains 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
/* 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