Created
November 21, 2019 19:41
-
-
Save tomhodgins/052e032cf02389ed6a792709390f16c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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