Day 79: font-tech() and font-format()

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
You can use the @supports rule to check whether a browser supports a specified font technology or font format.font-tech() @supports font-tech(palettes) { .palette { display: block; } } @supports not font-tech(incremental) { .incremental { display: block; } } @supports font-format(woff2) { .woff { ...