gpt4 book ai didi

css - 让div填充容器的宽度

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

我有一个动态生成的容器。它最终会在其中包含一个 div,或在其中包含两个 div。

第一个 div 可能存在也可能不存在,但第二个 div 始终存在。我需要第二个 div 始终填满整个宽度。

当第一个 div 存在时它会填充宽度,但当它不存在时它不会一直填充。

这是我当前使用的 CSS:

.div1 {
display: table-cell;
}
.div2 {
display: table-cell;
width: 100%;
vertical-align: top;
}

注意:这两个 div 都有表单字段和标签。

最佳答案

添加具有display:table 样式的父元素:

.table{
display:table;
width: 100%;
height: 200px;
}

.div1 {
display: table-cell;
background-color: red;
}

.div2 {
display: table-cell;
width: 100%;
vertical-align: top;
background-color: blue;
}
<h2>div1 has content</h2>
<div class="table">
<div class="div1">some content</div>
<div class="div2"></div>
</div>

<br/>

<h2>div1 has no content</h2>
<div class="table">
<div class="div1"></div>
<div class="div2"></div>
</div>

<br/>

<h2>no div1</h2>
<div class="table">
<div class="div2"></div>
</div>

JSFiddle

关于css - 让div填充容器的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33786170/

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