gpt4 book ai didi

html - float 后添加div

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

我已经使用 float 并排创建了 3 个 div,如下所示,但是我不确定如何添加宽度为 100% 且在其下方有一定高度的单个 div。我尝试简单地创建一个 div,但它根本没有出现,我不确定这是一个简单的编码错误还是我需要做更多的事情

.first-div {
width:33.33%;
height:150px;
float:left;
background-color:pink;
}

.second-div {
width:33.33%;
height:150px;
float:left;
background-color:blue;
}

.third-div {
width:33.33%;
height:150px;
float:left;
background-color:purple;
}

最佳答案

clear: both;添加到第四个DIV

.first-div {
width: 33.33%;
height: 150px;
float: left;
background-color: pink;
}

.second-div {
width: 33.33%;
height: 150px;
float: left;
background-color: blue;
}

.third-div {
width: 33.33%;
height: 150px;
float: left;
background-color: purple;
}

.fourth-div {
clear: both;
background: yellow;
height: 150px;
}
<div class="first-div"></div>
<div class="second-div"></div>
<div class="third-div"></div>
<div class="fourth-div"></div>

关于html - float 后添加div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46637141/

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