🪴 notes

Search

Search IconIcon to open search

outline css debugging

Published May 5, 2023 Last updated May 5, 2023 Edit Source

quick way to add outlines for all html elements to check for overflows for example. use the plus icon to add a new css rule with the * selector:

1
2
3
* {
	outline: 1px solid color;
}