I'd like to use a CSS variable to store a font in case the user doesn't have the specified font installed.
Example:
:root {
--common-font: Comic Sans MS;
}
.header1 {
font-family: CoolFont1, var(--common-font);
}
Will legacy browsers break if I add a reference to the variable in the font names?