Day 29: !important custom properties

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
Using !important with custom properties might not work as you expect.If you look at the following example, which color does the text have? .example1 { --color: red; color: var(--color) !important; color: blue; } .example2 { --color: red !important; color: var(--color); color: blue; } .example3 { --color:...