0
自定義CSS樣式我有以下代碼GWT的按鈕
Button orderButton = new Button("");
orderButton.setStyleName("OrderButton");
orderButton.getElement().getStyle().setProperty("marginTop", "35px");
的CSS看起來像這樣
.OrderButton {
width:208px;
height:43px;
background-image:url('graphics/OrderButton.jpg');border:0;margin:auto;
}
.OrderButton-down {
width:208px;
height:43px;
background-image:url('graphics/OrderButton_down.jpg');border:0;margin:auto;
}
但點擊按鈕不會改變任何東西。樣式保持不變「OrderButton」和「OrderButton-down」被忽略。
我忘了什麼嗎?
謝謝。工作了! – toom 2012-03-10 21:09:37