gpt4 book ai didi

html - 使用 float 元素填充区域

转载 作者:行者123 更新时间:2023-11-28 13:27:13 25 4
gpt4 key购买 nike

我正在使用带有 float:left 的 DIV

当 DIV 2 增加大小时

我们得到这样的结果:

+---+ +----+
| 1 | | |
+---+ | |
| 2 |
| |
| |
+----+
+---+
| 3 |
+---+

有没有办法实现这个:

+---+ +----+
| 1 | | |
+---+ | |
+---+ | 2 |
| 3 | | |
+---+ | |
+----+

不用求助于 jquery?

最佳答案

为此,您可以使用纯 CSS3 :nth-child 属性来做到这一点。像这样写:

.innerdiv:nth-child(even){
float:right;
border-color:red;
}

检查这个http://jsfiddle.net/RsYgR/1/

关于html - 使用 float 元素填充区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13260258/

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