如何将以下GWT CSS部分转换为GWT GSS?
@if (test.mobile.client.Parameter.getWindowWidth() >= 414) {
.previewBox {
width: 33.333333%;
}
}
答案 0 :(得分:2)
@if (eval("test.mobile.client.Parameter.getWindowWidth() >= 414")) {
.previewBox {
width: 33.333333%;
}
}