Skip to content

Instantly share code, notes, and snippets.

@jasonlbeggs
Created January 14, 2019 14:29
Show Gist options
  • Save jasonlbeggs/2a851d64725fa65a93674c9279b073ab to your computer and use it in GitHub Desktop.
Save jasonlbeggs/2a851d64725fa65a93674c9279b073ab to your computer and use it in GitHub Desktop.
A JavaScript snippet to highlight CSS layout issues
const head = document.querySelector('head');
const style = document.createElement('style');
style.innerHTML = `* { outline: solid 1px red !important; }`;
head.appendChild(style);
@jasonlbeggs
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment