我一直在玩nativescript,我看到它为我们提供了使用CSS的样式元素.
然而,在文档http://docs.nativescript.org/ui/styling.html中,我没有看到关于css的测量单位的任何提及.
这有效
.title {
font-size: 30;
horizontal-align: center;
margin: 20;
}
这不起作用
.title {
font-size: 30;
horizontal-align: center;
margin: 20px;
}
请注意,在第二个示例中,保证金为20px.
所以我的问题是当css使用nativescript使用什么单位时?
最佳答案
您链接的文档提到了Supported Properties部分中font-size属性下的“与设备无关的单位”,这表明NativeScript实际上并不使用任何测量单位本身,并且所有长度都以数字表示,而不是维度,强调这一点.
原文链接:https://www.f2er.com/css/426954.html