@supports
@supports позволяет определить, поддерживается ли данная фича браузером
@supports (animation-name: test) {
… /* specific CSS applied when animations are supported unprefixed */
@keyframes { /* @supports being a CSS conditional group at-rule, it can includes other relevant at-rules */
…
}
}
Variable fonts
Демка возможностей https://v-fonts.com/
Описание от Google https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts/
Полезное чтиво:
- Применение @supports на примере shape-outside и background-blend-mode
https://frontender.info/supports-will-change-your-life/