0

我有一个带有输入字段的 JSF 按钮:

在此处输入图像描述

<h:outputLabel for="rowsPerPage" value="Rows per page" />
<h:inputText id="rowsPerPage" value="#{AccountsController.rowsPerPage}" size="3" maxlength="3" style="border: 1px solid #006; height: 24px; border-radius: 3px 3px 3px 3px;" />
<h:commandButton styleClass="bimage" value="Set" action="#{AccountsController.pageFirst}" >
    <f:ajax render="@form" execute="@form"></f:ajax>
</h:commandButton>&nbsp;
<h:message for="rowsPerPage" errorStyle="color: red;" />

如您所见,输入字段位于“设置”按钮下方。如何使用 css 在一行中制作按钮和输入字段。以及如何使输入字段看起来像按钮?

编辑:这是html代码:

<input id="form:rowsPerPage" type="text" name="form:rowsPerPage" value="10" maxlength="3" size="3" style="border: 1px solid #006; height: 24px; border-radius: 3px 3px 3px 3px;" />
4

1 回答 1

1

尝试添加margin-top: 1px到您的按钮。

于 2012-12-07T14:50:57.727 回答