Last active
June 24, 2018 19:04
-
-
Save dougwt/9af6b4ece063553ffd757751254c0874 to your computer and use it in GitHub Desktop.
[CSS Debugging] Add borders around all your HTML elements using CSS’s universal selector. Source: https://techstacker.com/posts/byLe6TPW8Qnm38s97/css-workflow-use-borders-for-debugging-your-layouts-fast
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
* { | |
outline: 1px solid red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment