“So setzen Sie CSS -Variablen in JavaScript” Code-Antworten

So ändern Sie eine CSS -Variable mit JavaScript

var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor); 
Spotless Seal

So ändern Sie die CSS -Variable in JavaScript

document.documentElement.setAttribute("style", "--main-background-color: green");
PYTHON_NOT_SNAKE.py

So setzen Sie CSS -Variablen in JavaScript

		const docStyles = document.documentElement.style;

		docStyles.setProperty('--accent', '#ffffff');
		docStyles.setProperty('--textColor', '#ffffff');
Bright Booby

JS Set CSS -Variable

document.documentElement.style.setProperty("--main-background-color", "green");
Grumpy Gerenuk

Ähnliche Antworten wie “So setzen Sie CSS -Variablen in JavaScript”

Fragen ähnlich wie “So setzen Sie CSS -Variablen in JavaScript”

Weitere verwandte Antworten zu “So setzen Sie CSS -Variablen in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen