Answers for "how to create and set css variable in javascript"

14

how to change a css variable with javascript

var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor);
Posted by: Guest on February-17-2021
1

change css variable with javascript

document.documentElement.style.setProperty("--tab-count", 5);
Posted by: Guest on July-24-2021

Code answers related to "how to create and set css variable in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language