列对齐在h:panelGrid



我有这个表有3列。第三列用于验证消息,默认情况下为空。

<h:form>
    <h:panelGrid id="panel" styleClass="data_table_pricing" columns="3">
        <h:outputText value="Title"/>
        <h:inputText id="title" value="#{pricingForm.title}" validatorMessage="Value is too big.">
            <f:validateLength minimum="0" maximum="40" />
            <f:ajax event="change" render="@form"/>
        </h:inputText>
        <h:message id="title_message" for="title" style="color:red"/>
        <!-- // -->
        <h:outputText value="First name"/>
        <h:inputText id="first_name" value="#{pricingForm.firstName}" validatorMessage="Value is too big.">
            <f:validateLength minimum="0" maximum="40" />
            <f:ajax event="change" render="@form"/>
        </h:inputText>
        <h:message id="first_name_message" for="first_name" style="color:red"/>
        <!-- // -->
        <h:outputText value="Last name"/>
        <h:inputText id="last_name" value="#{pricingForm.lastName}" validatorMessage="Value is too big.">
            <f:validateLength minimum="0" maximum="40" />
            <f:ajax event="change" render="@form"/>
        </h:inputText>
        <h:message id="last_name_message" for="last_name" style="color:red"/>
        <!-- // -->
    </h:panelGrid>
    <h:commandLink value="reset" class="link" type="reset" style="margin: 20px;">
        <f:ajax execute="@form" render="@form"/>
    </h:commandLink>
    <h:commandLink value="Next" class="link" style="margin: 20px;" actionListener="#{pricingForm.calculatorPage()}">
        <f:ajax execute="@form" render="@form"/>
    </h:commandLink>
</h:form>

我使用下面的CSS代码来设置表格的样式:

.data_table_pricing {
    border-spacing: 12px;
    border-collapse: separate;
    width: 100%;
}

我需要找到一种方法来修复列的大小。当验证消息出现时,第二列被推到左边。

是否有任何方法来固定列的大小?

为td元素设置固定的宽度可以防止列跳转。

.data_table_pricing tbody tr td {
  width: 33%;
}
编辑:

对于可变列数表的解决方案,应使用以上方法。

table.data_table_pricing {
  table-layout: fixed;
}

相关内容

  • 没有找到相关文章

最新更新