Created
September 13, 2019 19:03
-
-
Save jecsham/a0307efc061d609da7ffacf8e22a7565 to your computer and use it in GitHub Desktop.
Debugger CSS - This styles allow you to see exactly the used espace of an element in the DOM, without adding pixels.
This file contains hidden or 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
/** | |
* Debugger CSS | |
* This styles allow you to see exactly the used espace of an element in the DOM, without adding pixels. | |
* Debug HTML elements adding the _d class. | |
* @author Jecsham Castillo | |
*/ | |
._d { | |
-webkit-box-shadow: inset 0px 0px 0px 2px rgba(255,0,0,1); | |
-moz-box-shadow: inset 0px 0px 0px 2px rgba(255,0,0,1); | |
box-shadow: inset 0px 0px 0px 2px rgba(255,0,0,1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment