gpt4 book ai didi

css - 高度 100% 带 flex-wrap

转载 作者:行者123 更新时间:2023-11-28 17:04:11 26 4
gpt4 key购买 nike

我用 Flexbox 做了布局。

当我使用 flex-wrap: wrap 时,其他元素没有覆盖整个高度。

body {
height: 100%;
}

.wrap {
display: flex;
flex-shrink: 0;
flex-wrap: wrap;
background-color: antiquewhite;
justify-content: center;
}

.box {
margin: 10px;
width: 300px;
height: 300px;
background-color: azure;
}

.modal {
position: absolute;
background: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
}
<div class="wrap">
<div class="modal">Modal</div>
<div class="box">1</div>
<div class="box">1</div>
<div class="box">1</div>
<div class="box">1</div>
<div class="box">1</div>
<div class="box">1</div>
<div class="box">1</div>
</div>

我希望 .modal 覆盖 100% 的高度,但它没有。

enter image description here

如何使 .modal 的高度达到 100%?

谢谢。

最佳答案

中添加 position: relative。包装类:

关于css - 高度 100% 带 flex-wrap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50690529/

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