gpt4 book ai didi

css - 将 flex 元素堆叠在一起

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

我正在尝试使用 flexbox 构建这样的布局:

enter image description here

如何将元素堆叠在一起?

我使用 CSS 网格构建上面屏幕截图中的内容,但未能使用 flexbox 执行此操作。

.grid {
display: grid;
height: 100%;
grid-template-columns: 2rem repeat(2, auto) 2rem;
grid-template-rows: 4rem 4rem auto;
background-color: #fff;
}

.layer1 {
background-color: rgb(64, 213, 187);
grid-column-start: 1;
grid-column-end: span 3;
grid-row-start: 1;
grid-row-end: span 3;
}

最佳答案

注意:此问题询问有关沿 z 轴 堆叠 flex 元素的问题。如果您是来这里寻找沿 y 轴 的“将 flex 元素堆叠在一起”,请参阅此帖子:prevent flex items from rendering side to side .


Flexbox 旨在使元素沿列或行对齐。它不是为堆叠而设计的。

然而,CSS Grid 非常适合这类事情。

Grid 的 CSS 替代方案是绝对定位:

(请注意,当 flex item is absolutely positioned 时,它不再接受大多数 flex 属性。)

article {
display: flex;
height: 100vh;
position: relative;
}

section:nth-child(1) {
flex: 1;
background-color: turquoise;
}

section:nth-child(2) {
position: absolute;
top: 50px;
left: 50px;
right: 0;
bottom: 0;
background-color: salmon;
}

section:nth-child(3) {
position: absolute;
top: 100px;
left: 250px;
right: 0;
bottom: 0;
background-color: thistle;
}

body {
margin: 0;
}
<article>
<section></section>
<section></section>
<section></section>
</article>

jsFiddle

关于css - 将 flex 元素堆叠在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43759195/

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