1 2 3 4 5 6 7 8 9 10 11 12 13 14
<html> <style> :root { var-mycolor : red; } div { color: var(mycolor); } </style> <body> <p>Check that a CSS variable definition accepts spaces before the ':'</p> <div>This text should be red</div> </body> </html>