gpt4 book ai didi

css - 使 flex 元素 90% 宽

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

这是一个简单的问题。我一定只是错过了答案。我有一个 flex 容器,里面有一个 flex 元素。我希望 flex 元素的宽度为 90%,并且垂直和水平居中。我只是无法让它达到 90% 的宽度。我很困惑。这是我的代码:

<div class="" id="popupContainer">
<div class="flex-item-popup" id="popup">

</div>
</div>

#popupContainer {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display:flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-content: flex-start;
align-items: center;
}
#popup {
width: 90%;
height: 90%;
flex-grow: 1;
flex-shrink: 0;
flex-basis: 200px;
justify-content: center;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-flex-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
background-color: black;
justify-content: center; /* align horizontal */
align-items: center; /* align vertical */
}

最佳答案

只需删除这两个,它就会正常工作:

flex-grow: 1; flex-basis: 200px;

Live Demo

关于css - 使 flex 元素 90% 宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28903376/

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