gpt4 book ai didi

HTML 容器随着每个添加的 child 而扩展宽度 - 全部在一行中?

转载 作者:太空宇宙 更新时间:2023-11-04 13:22:21 25 4
gpt4 key购买 nike

如何强制 parent 扩大 child 的宽度。

HTML:

<div class="parent">
<div class="child">
1
</div>
<div class="child">
2
</div>
<div class="child">
3
</div>
</div>

CSS:

.parent {

}
.child {
width: 200em;
float: left;
}

.child:nth-child(odd) {
background-color: red;
}

.child:nth-child(even) {
background-color: green;
}

我想要实现的目标:

+Parent-----------------+
| child child child ... |
+-----------------------+

我不想实现但我正在实现的:)

+Parent-+
| child |
| child |
| child |
+-------+

如果可能,最好不要使用表格和 flex 布局。

最佳答案

解释

我假设您不希望子元素换行。

首先,去掉 float: left 并将其替换为 display: inline-block。它实现了相同的目的,并且您没有将元素从文档流中移除。

接下来,在本例中的包含元素 .parent 上,添加 white-space: nowrap; 规则。这将阻止子元素在达到视口(viewport)宽度时环绕。

最终 CSS

.parent {
white-space: nowrap;
}
.child {
width: 200em;
display: inline-block;
}

.child:nth-child(odd) {
background-color: red;
}

.child:nth-child(even) {
background-color: green;
}

JSFiddle

关于HTML 容器随着每个添加的 child 而扩展宽度 - 全部在一行中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23959993/

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