Nativescript css calc()
我使用了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论