提问人:Abdul-Qader Haddad 提问时间:3/31/2023 更新时间:3/31/2023 访问量:47
在 Falkon 浏览器上支持现代 CSS 功能吗?
Support for modern CSS features on Falkon browser?
问:
有没有办法在 Falkon 3.2.0 上支持现代 CSS 功能,如 、 等?calc()
clamp()
min()/max()
这些不适用于 Falkon,因为它基于 2018 年发布的 Chromium 69。
或者相反,有没有办法模拟上述功能的效果?
我读过关于 CSS Polyfills 的文章,但我对从哪里开始/做什么感到非常困惑。
我正在做的项目是在 Angular 13 中。
任何帮助将不胜感激,谢谢。
答:
1赞
Joosep Parts
3/31/2023
#1
你可以使用包吗?https://www.npmjs.com/package/css-vars-ponyfillcss-vars-ponyfill
npm i css-vars-ponyfill
cssVars({
include: 'style',
onlyLegacy: false,
watch: true,
onComplete(cssText, styleNode, cssVariables) {
console.log(cssText);
}
});
https://stackblitz.com/edit/css-vars-ponyfill-29-aa9xuj?file=src%2Fmain.ts
评论