doc_variables_4.html (401B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <html> 4 <head> 5 <title>variables test</title> 6 <style> 7 :root { 8 --10: 10px; 9 ---blue: blue; 10 } 11 #a { 12 font-size: var(--10); 13 } 14 #b { 15 color: var(---blue); 16 } 17 </style> 18 </head> 19 <body> 20 <div id="a">A</div><br> 21 <div id="b">B</div> 22 </body> 23 </html>