Skip to content

Instantly share code, notes, and snippets.

@himat
Created October 15, 2020 15:16
Show Gist options
  • Save himat/164aa3cacc2c834863d117f263d02303 to your computer and use it in GitHub Desktop.
Save himat/164aa3cacc2c834863d117f263d02303 to your computer and use it in GitHub Desktop.
[Get all CSS rules on a webpage] #javascript
Array.from(document.styleSheets).map(s => Array.from(s.cssRules)).flat().map(c => c.cssText).join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment