我想知道如何将p:panelgrid的标题或标题放到左侧,所以text-align:left,默认位置是中心。我的代码如下:
<p:panelGrid columns="3" columnClasses="colC1,colC2" styleClass="noBorders" style="width: 100%;" >
<f:facet name="header">
<h:outputText value="Information General"/>
</f:facet>
</p:panelGrid>
CSS
.noBorders tr, .noBorders td {
border: none !important;
}
感谢
答案 0 :(得分:2)
CSS:
.leftAlign {
float: left;
}
JSF:
<h:outputText value="Information General" styleClass="leftAlign"/>