私はcssクラスを宣言しています:
gwt-Label {
font-size: 16px;
}
実行時にfont-sizeの値を照会する方法はありますか?何かのようなもの:
public void foo() {
CssFoo css = new CssFoo("gwt-Label");
float fontSize = css.getAttribute("font-size");
println("Your font size is: " + fontSize);
}
ありがとう