OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 | 2 |
3 <style> | 3 <style> |
4 div { | 4 div { |
5 background-color: var(color); | 5 background-color: var(color); |
6 border-style: var(border); | 6 border-style: var(border); |
7 } | 7 } |
8 </style> | 8 </style> |
9 | 9 |
10 <div id="outer" style="var-color: darkred; var-border: dashed"> | 10 <div id="outer" style="var-color: darkred; var-border: dashed"> |
11 This div should be green with a solid border. | 11 This div should be green with a solid border. |
12 <div>This div should also be green with a solid border.</div> | 12 <div>This div should also be green with a solid border.</div> |
13 </div> | 13 </div> |
14 | 14 |
15 <script> | 15 <script> |
16 var outer = document.querySelector("#outer"); | 16 var outer = document.querySelector("#outer"); |
17 | 17 |
18 outer.style.var.set("color", "green"); | 18 outer.style.var.set("color", "green"); |
19 outer.style.var.set("border", "solid"); | 19 outer.style.var.set("border", "solid"); |
20 | 20 |
21 </script> | 21 </script> |
OLD | NEW |