Skip to content

Instantly share code, notes, and snippets.

@mattfwood
Last active July 6, 2021 19:54
Show Gist options
  • Select an option

  • Save mattfwood/38749359b6c5fbd483cee9c37867e03f to your computer and use it in GitHub Desktop.

Select an option

Save mattfwood/38749359b6c5fbd483cee9c37867e03f to your computer and use it in GitHub Desktop.
outline all elements in red to debug CSS
/* Run this command in your browser's console to give all page elements a red outline
** to help with debugging layout issues
*/
document.querySelectorAll('*').forEach(element => element.style.outline = '1px solid red')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment