gpt4 book ai didi

css max-width 在另一个 div 中不起作用

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

请参阅下面的 css/html;有人可以帮助为什么内部 div(类“b”)中的最大宽度不起作用吗?我在 chrome 中运行它,它保持 600px 的最大宽度并且不会调整到 400px。调整浏览器窗口时,外部 div 工作并从 800 调整到 600,但内部 div 保持在 600px!有小费吗?我尝试添加 !important 和其他内容,但没有任何帮助。

谢谢!

.a{
margin: 0 auto;
background:yellow;
max-width:800px;
min-width:600px;
height:100px;

}
.b{
margin: 0 auto;
background:green;
max-width:600px;
min-width:400px;
height:50px;
}
<div class="a">
<div class="b">
</div>
</div>

最佳答案

外面的div是错误的。因为 a max-width:600px; 浏览器停止了 max-width 你必须从 .b

.a{
margin: 0 auto;
background:yellow;
max-width:800px;
min-width:400px;
height:100px;

}
.b{
margin: 0px 50px 0px 50px;
background:green;
min-width:400px;
height:50px;
}

工作 DEMO

关于css max-width 在另一个 div 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28570395/

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