0

我有两个按钮,不希望它们与它们之间的空格对齐。但以下不起作用:

<gwt:FlowPanel styleName="{style.pad}">
    <gwt:Button text="foo" />
    <gwt:Button text="bar" />
</gwt:FlowPanel>

<ui:style>
    .pad .gwt-Button {
            margin-right: 20px !important;
    }
</ui:style>

结果:按钮并排对齐,它们之间没有空格。为什么??

4

2 回答 2

1

明白了:我必须@external gwt-Button;在 ui:style 声明中使用。

于 2013-03-11T10:28:00.677 回答
0

尝试这个

.gwt-Button {

padding : 10px !important

}
于 2013-03-11T10:16:41.130 回答