Workaround for CSS variables in IE?
Yes there is a way, the same way you make any css compatible: use a specific css fallback that is supported by the browser. body { –text-color: red; } body { color: red; /* default supported fallback style */ color: var(–text-color); /* will not be used by any browser that doesn’t support it, and will … Read more