Skip to content

Instantly share code, notes, and snippets.

@tobireif
Created October 22, 2015 13:33
Show Gist options
  • Save tobireif/ba62afcee6c19c4025c6 to your computer and use it in GitHub Desktop.
Save tobireif/ba62afcee6c19c4025c6 to your computer and use it in GitHub Desktop.
Appending CSS using Javascript
var head = document.documentElement.querySelector("head");
var styleEl = document.createElement("style");
var styleStr = document.createTextNode(
"#content {prop: val}"
);
styleEl.appendChild(styleStr);
head.appendChild(styleEl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment