我正在实施 Metro 应用程序,并停留在视图状态。
我有两个视图状态,用于全屏和非全屏
以下是我的代码,它尝试通过确定最大宽度的百分比来应用非全屏样式但不起作用
/*default css style for fullscreen */
.class1 {}
.class2 {}
/* non-fullscreen style */
@media (min-width: 320px) and (max-width: 99%) {
.class1 {}
.class2 {}
}
有什么建议吗?谢谢