gpt4 book ai didi

html - div 中的内容

转载 作者:太空宇宙 更新时间:2023-11-04 14:44:56 24 4
gpt4 key购买 nike

这就是我在 HTML 中配置 div 的方式

<div id="wrapper"><div id="content"><div id="details-middle" class="box">
..........content.........
</div></div></div>

这是 div 的 css

#wrapper {
border-radius: 12px;
font-size:13px;
line-height:140%;
width:1008px;
margin:0 auto;
margin-top: 15px;
margin-bottom:15px;

}
#content {
margin-left:20px;
width:1008px;
}
#details-middle
{
float:left;
width:700px;

}
.box {border: 1px solid #CCC;
border-radius:12px;
margin-bottom:7px;
padding:10px 12px;
background-color: #FFF;
}

一切都显示在 div 的 ..

http://grab.by/cdWa

最佳答案

您正在 float details-middle,这意味着非 float 元素不会为其腾出空间,除非它们本身是 float 的,或者您clear the float .

我的首选解决方案是给父级 overflow: hidden; 这将迫使父级为其 float 的子级腾出空间:

#content
{
margin-left:20px;
width:1008px;
overflow: hidden; /* change here */
}

关于html - div 中的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9570889/

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