Custom Properties IE Fallback

PHOTO EMBED

Thu Apr 22 2021 10:00:44 GMT+0000 (Coordinated Universal Time)

Saved by @Sebhart #css #browser

/* Default values */
:root {
    --text-color: #222;
}
/* Values in alt-color */
.alt-color {
    --text-color: green;
}
/* Vercschachtelung muss beibehalten werden, damit IE Fallback greift */
.alt-color p {
    color: green; /* fuer IE */
    color: var(--text-color);
}

/* 
ohne IE Support waere das für einen Farbwechsel ausreichend:

p {
    color: var(--text-color);
}
*/
content_copyCOPY