Skip to content

Instantly share code, notes, and snippets.

@mattfwood
Created May 29, 2019 14:30
Show Gist options
  • Select an option

  • Save mattfwood/6162eae561d56c0f75080c05ff8dded4 to your computer and use it in GitHub Desktop.

Select an option

Save mattfwood/6162eae561d56c0f75080c05ff8dded4 to your computer and use it in GitHub Desktop.
Give all elements on the page a red border to identify things that are breaking the layout
document.querySelectorAll('*').forEach(el => el.style.border = '1px solid red')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment