【发布时间】:2015-01-31 05:51:04
【问题描述】:
如何将以下 GWT CSS 部分转换为 GWT GSS?
@if (test.mobile.client.Parameter.getWindowWidth() >= 414) {
.previewBox {
width: 33.333333%;
}
}
【问题讨论】:
标签: java html css gwt google-closure
如何将以下 GWT CSS 部分转换为 GWT GSS?
@if (test.mobile.client.Parameter.getWindowWidth() >= 414) {
.previewBox {
width: 33.333333%;
}
}
【问题讨论】:
标签: java html css gwt google-closure
@if (eval("test.mobile.client.Parameter.getWindowWidth() >= 414")) {
.previewBox {
width: 33.333333%;
}
}
【讨论】: