gpt4 book ai didi

jquery - Div 未填满容器的 50%

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

我需要用另外两个 div 填充一个 div,这些 div 必须填充父 div 的 50%,但子 div 只填充其内容。

.uno {
background-color: blue;
width: 50%;
display: inline;
}

.dos {
background-color: green;
width: 50%;
display: inline;
}

.super {
width: 100%;
}
<div class="super">
<div class="uno">
aaaaaa
</div>
<div class="dos">
bbbbb
</div>
</div>

最佳答案

您需要添加float:left 属性。请检查:

.uno{
background-color: blue;
width: 50%;
float:left;
}
.dos{
background-color: green;
width: 50%;
float:left;
}
.super{
width: 100%;
}
<div class="super">
<div class="uno">
aaaaaa
</div>
<div class="dos">
bbbbb
</div>
</div>

关于jquery - Div 未填满容器的 50%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44023045/

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