私はCSSでグリッドレイアウトを作成しようとしています:CSSを使ったグリッドレイアウト?
2つの列に分かれたコンテンツdivを持っています:main + right。
今は2種類の要素があります。私はいつもこれらの要素を並べて整列させたい。
だから私はこのような何か抱えている:これは一つだけであるので、IDの最初の出現のために働くんもちろん
<p:panel id="outerPanel">
<h:panelGroup id="maincol">
<ui:include src="table1.xhtml" />
</h:panelGroup>
<h:panelGroup id="rightcol">
<ui:include src="input1.xhtml" />
</h:panelGroup>
<h:panelGroup id="maincol">
<ui:include src="table2.xhtml" />
</h:panelGroup>
<h:panelGroup id="rightcol">
<ui:include src="input2.xhtml" />
</h:panelGroup>
</p:panel>
:
#outerPanel{
width:100%;
float:right;
position:relative;
}
#rightcol{
width:35%;
float:right;
position:relative;
}
#maincol{
float: left;
position: relative;
width:65%;
}
、私のいるindex.xhtmlをIDを再利用することはできません。 しかしこれは私がやろうとしていることを示しています。どうすればそれをセットアップできますか?
のthnx
niiiice!タイヴムはクラスについて知らなかった! – membersound
ようこそ。 – BalusC