Skip to content

Instantly share code, notes, and snippets.

@jecsham
Created September 13, 2019 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jecsham/a0307efc061d609da7ffacf8e22a7565 to your computer and use it in GitHub Desktop.
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.
/**
* 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