gpt4 book ai didi

html - CSS float Div 和页脚?

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

我有这个:

enter image description here

如您所见,顶部有两个 float div,底部有一个实心 div。但是实心 div(页脚)隐藏在两个 float div 之下。

我怎样才能让它停留在两个 float div 的下面,而不是像在 imgur 上那样在它们里面?

.left {
float:left;
width:300px;
}
.right {
float:right;
width:300px;
}
.footer {
width:600px;
}

最佳答案

clear:both; 添加到页脚规则。

.footer {
width:600px;
clear:both;
}

https://developer.mozilla.org/en-US/docs/Web/CSS/clear

关于html - CSS float Div 和页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32097614/

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