Skip to content

Instantly share code, notes, and snippets.

@exegeteio
Created October 18, 2022 01:45
Show Gist options
  • Save exegeteio/1b83e9bacf81e7f054a0cba2ec5823e8 to your computer and use it in GitHub Desktop.
Save exegeteio/1b83e9bacf81e7f054a0cba2ec5823e8 to your computer and use it in GitHub Desktop.
Show all classes in Tailwind.
let els = document.querySelectorAll("body *[class]"); els.forEach((el) => { let el2 = document.createElement("span"); el2.innerText = el.classList.toString(); el2.style = "color: red;"; el.parentNode.prepend(el2); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment