gpt4 book ai didi

css - 2 个固定宽度的侧边栏,中央 div 填充剩余空间

转载 作者:太空宇宙 更新时间:2023-11-04 13:34:49 29 4
gpt4 key购买 nike

如何让绿色 divwidth: 100% 与其他两个 div 在同一行并固定 宽度

我的想法是让两侧的 div 有固定的宽度,而中间的 divwidth: 100% (以剩余空间)。

是否可以实现这种情况?

CSS:

.boxMenu {
width:200px;
height:40px;
background-color:#000;
float:left;
}
.boxConteudoMaster {
height:40px;
background-color:#4cff00;
float:left;
}
.boxNotificacao {
width:200px;
height:40px;
background-color:#000;
float:left;
}

HTML:

<div class="boxMenu"></div>
<div class="boxConteudoMaster">asd</div>
<div class="boxNotificacao"></div>

JSFIDDLE HERE

最佳答案

我想你是这样的:

HTML:

<div class="boxMenu"></div>
<div class="boxNotificacao"></div>
<div class="boxConteudoMaster">Testing...</div>

CSS:

.boxMenu {
width:200px;
height:40px;
background-color:#000;
float:left;
}
.boxConteudoMaster {
height:40px;
background-color:#4cff00;
width: 100%;
}
.boxNotificacao {
width:200px;
height:40px;
background-color:#000;
float:right;
}

所以我们可以 float 我们想要固定的 2 个 div(float:leftfloat: right),然后在 put 之后中间 divwidth: 100%

DEMO HERE

关于css - 2 个固定宽度的侧边栏,中央 div 填充剩余空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23111135/

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