GWT中有条件属性的CSS表达到GSS?

时间:2015-01-30 18:16:00

标签: java html css gwt google-closure

如何将以下GWT CSS部分转换为GWT GSS?

@if (test.mobile.client.Parameter.getWindowWidth() >= 414) {
 .previewBox {
    width: 33.333333%;
 }
}

1 个答案:

答案 0 :(得分:2)

@if (eval("test.mobile.client.Parameter.getWindowWidth() >= 414")) {
    .previewBox {
        width: 33.333333%;
    }
}