Skip to content

Instantly share code, notes, and snippets.

@tomhodgins
Created November 21, 2019 19:41
Show Gist options
  • Save tomhodgins/052e032cf02389ed6a792709390f16c6 to your computer and use it in GitHub Desktop.
Save tomhodgins/052e032cf02389ed6a792709390f16c6 to your computer and use it in GitHub Desktop.
// Step 1: Create a <style> tag to use and add it to the document
var css = document.body.appendChild(document.createElement('style'))
// Empty all custom CSS added so far
css.innerHTML = ''
// Add new CSS to our <style> tag (replace with your own CSS rules)
css.innerHTML += `
p {
color: red;
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment