如何定义两个水平按钮之间的空间?

时间:2013-03-11 10:10:59

标签: java css gwt

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

<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>

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

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

试试这个

.gwt-Button {

padding : 10px !important

}