Skip to content

Instantly share code, notes, and snippets.

@rezwan-hossain
Forked from ikenfin/Borders bookmarklet
Created November 7, 2020 03:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rezwan-hossain/dcf323cc2690a4f0355db50f0b1f8fb0 to your computer and use it in GitHub Desktop.
Save rezwan-hossain/dcf323cc2690a4f0355db50f0b1f8fb0 to your computer and use it in GitHub Desktop.
Bookmarklet to show borders for divs
javascript:if(!window.__debug_div_borders_inited) { var sheet = document.styleSheets[0]; sheet.insertRule('body.__debug_div_borders div { outline: 1px solid green; }', ((sheet.cssRules && sheet.cssRules.length) || 0)); window.__debug_div_borders_inited = true; } document.body.classList.toggle('__debug_div_borders');void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment