gpt4 book ai didi

html - 父 div 高度小于预期

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

我正在练习网页设计,我注意到父 div 的高度比子 div 小一些。

enter image description here

这是我的CSS代码:

html,body{
background-color: #ecf0f1 ;
height: 100%;
padding:0px;
margin:0px;
}


#homeDisplay{
width: 850px;
height: auto;
border: 2px solid #7f8c8d;

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-left:auto;
margin-right:auto;
padding:8px;
}

#signupForm{
text-align: right;
float:right;
width: auto;
height: auto;
border: 2px solid #7f8c8d;

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding: 8px;
}

最佳答案

这是因为 float: 就在您的#signupForm 中。这会导致 div 脱离文档的 float 。

放一个

<div class="clear"></div>

.clear {
clear: both;
}

在注册表单之后。

关于html - 父 div 高度小于预期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24230509/

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