One query to remove all CSS at once

Rishi - Apr 15 '20 - - Dev Community

3 Types of CSS Styles:

  • Inline
  • External
  • Internal

Most sites have CSS scattered around all these 3 types.

That one query which clears all CSS from a page.

Hit F12 to open the console from the Developer tool.

Alt Text

CtrlC this command:

document.querySelectorAll('style,link[rel="stylesheet"]').forEach(style => style.remove());
Enter fullscreen mode Exit fullscreen mode

Then, CtrlV in the console.
Hit Enter , et Voilà!

. . . . . . . . . . . . . . . . . . . .