gpt4 book ai didi

css - 如何用div填充空白

转载 作者:行者123 更新时间:2023-11-28 07:20:47 31 4
gpt4 key购买 nike

如何用div填充空白?

我需要 div 的行为就像它们各自填充空白的地方一样。因此,如果需要,div 会到达顶部,加入上面的 div,但无论我在哪里使用 float: leftdisplay: inline-block/inline,我都会得到这个>

main {
font-size: 0;
}
main > div {
width: 25%;
display: inline-block;
vertical-align: top;
}
main > div:nth-child(4n+1) {
height: 200px;
background: red;
}
main > div:nth-child(4n+2) {
height: 100px;
background: blue;
}
main > div:nth-child(4n+3) {
height: 300px;
background: orange;
}
main > div:nth-child(4n+4) {
height: 150px;
background: darkcyan;
}
<main>
<div></div>
<div></div>
<div></div>
<div></div>

<div></div>
<div></div>
<div></div>
<div></div>

<div></div>
<div></div>
<div></div>
<div></div>

</main>

最佳答案

为了实现该布局,您需要使用一些 javascript 逻辑。
单独使用 CSS 不允许您像那样定位不同高度的元素。

一个建议是 masonry它将为您完成起重工作,并为您的元素计算适当的位置,然后应用 position: absolute; 并设置 topleft 它们的 css 属性。

Masonry is a JavaScript grid layout library. It works by placing elements in optimal position based on available vertical space, sort of like a mason fitting stones in a wall. You’ve probably seen it in use all over the Internet.

关于css - 如何用div填充空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32100300/

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