© 2026 Hedgehog Software, LLC
h1 { --text: "Hello World!"; --color: black; } h1::before { content: var(--text); color: var(--color); }
document.querySelector('h1').style.setProperty('--color', 'hotpink')
document.querySelector('h1').style.setProperty('--text', 'Hello World from JS'))