Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>CSS variable - example 1</title> <style> :root { --my-color: red; } .para { color: var(--my-color); } </style> </head> <body> <h1>Understanding CSS variables.</h1> <p class="para">This paragraph is using the CSS variable.</p> </body> </html>
RunĀ