我一直在与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使用哪个单元?