gpt4 book ai didi

css - 网格布局与CSS?

转载 作者:行者123 更新时间:2023-11-28 18:50:52 24 4
gpt4 key购买 nike

我正在尝试使用 CSS 创建某种网格布局:

有一个内容 div,分为 2 列:main + right。

现在我有两种元素。我总是希望这些元素并排对齐。

所以我有这样的事情:

#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。但这显示了我正在尝试做的事情。我还能如何设置它?

谢谢

最佳答案

Of course this does only work for the first occurrence of the id's, as one is not allowed to reuse the id.

只需使用 class 而不是 id

<h:panelGroup styleClass="maincol">
...
</h:panelGroup>
<h:panelGroup styleClass="rightcol">
...
</h:panelGroup>

<h:panelGroup styleClass="maincol">
...
</h:panelGroup>
<h:panelGroup styleClass="rightcol">
...
</h:panelGroup>

.rightcol {
...
}

.maincol {
...
}

关于css - 网格布局与CSS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9350084/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com