0

primefaces コンポーネントのスタイルを変更する方法。特に の背景色<p:layoutUnit

これは私のコードです:

<p:layout fullPage="true">
        <!-- TITRE -->
        <p:layoutUnit position="north" size="auto" resizable="true" closable="true"  >
            <ui:include src="titre.xhtml"></ui:include>
        </p:layoutUnit>
        <!-- CONTENT -->
        <p:layoutUnit position="center" size="25%" header="Options" >
                <ui:include src="titre.xhtml"></ui:include>
        </ui:include>
    <p:layout fullPage="true">
4

1 に答える 1

2

追加できます: style="background: red !important" 赤の背景。独自のテーマを展開することもできます。このプロセスは、primefaces のマニュアル (オンラインで無料で入手可能) に記載されています。

<p:layoutUnit position="north" style="background: red !important;" size="auto" resizable="true" closable="true"  >

より具体的なものが必要な場合は、お気軽にお問い合わせください。

于 2012-10-01T11:54:12.270 に答える