Answers for "how to access css variables with js"

2

js set css variable

document.documentElement.style.setProperty("--main-background-color", "green");
Posted by: Guest on January-07-2021
2

how to change css variable in javascript

document.documentElement.style.cssText = "--main-background-color: red";
Posted by: Guest on September-11-2020

Code answers related to "how to access css variables with js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language