Skip to content

Instantly share code, notes, and snippets.

@tobireif
Created October 14, 2015 16:28
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 tobireif/85abf3d0ca11d2d32c00 to your computer and use it in GitHub Desktop.
Save tobireif/85abf3d0ca11d2d32c00 to your computer and use it in GitHub Desktop.
Appending a rule to the last CSS stylesheet (using JS)
var styleSheets = document.styleSheets;
var lastStyleSheet = styleSheets[styleSheets.length - 1];
lastStyleSheet.insertRule(
"selector {prop: val}", lastStyleSheet.cssRules.length
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment