我在表格中心有登录按钮的表格:
<h:panelGrid columns="3" >
.....
<td align="center">
<a:commandButton id="loginButton">
<td>
.....
</h:panelGrid>
我想添加保存按钮,以便两个按钮位于中心。但是,如果只是向<td>
添加按钮,则会在右侧设置保存按钮。
答案 0 :(得分:0)
jsf按钮问题 - 所有
<h:commandButton id="SaveButton" value="Save" style="float:right;margin-right:10px;" action="save"/>
**or use div tag**
<div style="margin-left:200px;">
<h:commandButton id="SaveButton" value="Save" action="save"/>
</div>