如何在Nativescript Angular Mobile App中根据设备宽度分配不同的CSS文件

我正在尝试NativeScript-Platform-CSSNativeScript FontScale pluggins,但不支持。

nativescript angular有什么办法做吗?

laoying123654 回答:如何在Nativescript Angular Mobile App中根据设备宽度分配不同的CSS文件

这可以通过以下方式完成:-

@media screen and (max-width: 1024px){

@import url('assets/css/myStyle.css');

}
@media screen and (max-width: 768px){

@import url('assets/css/myStyle2.css');

}
本文链接:https://www.f2er.com/3051658.html

大家都在问