Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Last active January 18, 2024 21:42
Show Gist options
  • Save luislobo14rap/d7bd4f6f2bc6449803b438e02bee1dfc to your computer and use it in GitHub Desktop.
Save luislobo14rap/d7bd4f6f2bc6449803b438e02bee1dfc to your computer and use it in GitHub Desktop.
create-style.js
// create-style.js v1
function createStyle(cssString) {
const head = document.querySelector("head"),
style = document.createElement("style")
style.setAttribute("type", "text/css")
style.append(document.createTextNode(cssString))
head.append(style)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment