0
我想證明我的按鈕組的父母的整個寬度。gwtbootstrap3。如何證明ButtonGroup元素與按鈕
這裏是我的代碼:
ButtonGroup buttonGroupHelper = new ButtonGroup();
Button loginButton = new Button("Log in");
Button resetButton = new Button("Reset");
Button forgotCredentialsButton = new Button("Forgot credentials?");
buttonGroupHelper.add(loginButton);
buttonGroupHelper.add(resetButton);
buttonGroupHelper.add(forgotCredentialsButton);
而且我得到這個:
當我將加入這一行:
buttonGroupHelper.setJustified(true);
我得到這個:
這裏是HTML,我gwtbootstrap3框架生產:
<div class="btn-group btn-group-justified">
<button type="button" class="btn btn-success"><i class="fa fa-play-circle-o"></i> Log in</button>
<button type="button" class="btn btn-danger"><i class="fa fa-times-circle-o"></i> Reset</button>
<button type="button" class="btn btn-warning"><i class="fa fa-key"></i> Forgot credentials?</button>
</div>
我做錯了什麼。或者這只是一個錯誤?
請幫忙。
你可以添加css嗎?此外,你應該更新你的標題,使其更容易閱讀 –
如果不添加CSS,我們很難找到解決方案。 –
我使用oryginal bootstrap主題。增加了信息發佈。 – masterdany88