Last active
April 20, 2022 04:01
-
-
Save angelolev/f5e4329c8fddaf2b2800559ad583cf00 to your computer and use it in GitHub Desktop.
Script to see HTML elements containers and properties
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
<style> | |
html * { | |
background: rgba(255, 0, 0, .1); | |
box-shadow: 0 0 0 1px red; | |
} | |
</style> |
Karmineitor
commented
Apr 18, 2022
<style>
html * {
background: rgba(255, 0, 0, .1);
box-shadow: 0 0 0 1px red;
}
</style>
Save this as a bookmark
javascript:((()=>{ document.head.insertAdjacentHTML("beforeend", "<style> html * { background: rgba(255, 0, 0, .1); box-shadow: 0 0 0 1px red; } </style>")})())
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment