Nativescript css calc()

发布于 2025-01-12 05:51:16 字数 455 浏览 0 评论 0原文

我使用了 css calc() 函数,但它给出了错误。但是nativescript文档说nativescript可以支持calc()。 这里使用 calc() 的示例

我的代码:

.card {
    --my-variable: 5;
    width: calc(50% - var(--my-variable));
    width: calc(50% - 5);
}

它是我得到的错误:

错误:无法将值为 [calc(50% - 5)] 的属性 [width] 应用到 GridLayout(550)。错误:无效值:calc(50% - 5)

任何评论、链接都可以帮助我

i used css calc() function but it gives error. But n the nativescript documentation says that nativescript can support calc().
here example of using calc()

My code:

.card {
    --my-variable: 5;
    width: calc(50% - var(--my-variable));
    width: calc(50% - 5);
}

It is error which i get:

Error: Failed to apply property [width] with value [calc(50% - 5)] to GridLayout(550). Error: Invalid value: calc(50% - 5)

Any comments, links can help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文