我試圖用css創建某種網格佈局:用css進行網格佈局?
有一個內容div,它分爲2個colums:main + right。
現在我有2種元素。我總是希望這些元素並排排列。
所以我有這樣的事情:
#outerPanel{
width:100%;
float:right;
position:relative;
}
#rightcol{
width:35%;
float:right;
position:relative;
}
#maincol{
float: left;
position: relative;
width:65%;
}
和我的index.xhtml:
<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>
當然這並不只爲ID的第一次出現的工作,因爲一個是不允許重用該ID。 但這顯示了我想要做的事情。我怎樣才能設置它?
thnx
niiiice!tyvm不瞭解課堂! – membersound 2012-02-19 15:09:36
不客氣。 – BalusC 2012-02-19 23:06:46