Skip to content

Instantly share code, notes, and snippets.

@glipitch
glipitch / element-outlines.css
Created March 8, 2023 13:25
Display outlines on nested elements
:root /*or select specific element(s)*/ {
--outline-width: .01px;
}
* {
outline: var(--outline-width) solid red;
}
* * {