gpt4 book ai didi

javascript - 如何在 flex div 中打断,以便溢出的元素可以进入下一行是 css?

转载 作者:太空宇宙 更新时间:2023-11-04 00:46:11 24 4
gpt4 key购买 nike

  1. 我使用 material-ui 弹出器来显示头像列表。
  2. 我想在弹出窗口中水平显示头像。
<Popper style={{ display: 'flex', maxWidth: '200px',  }}>
<div style={{ marginRight: '20px' }}><Avatar /></div>
<div style={{ marginRight: '20px' }}><Avatar /></div>
</Popper>
  1. 它从弹出器中溢出,但我希望它们转到下一行。
  2. 我需要一个最大宽度。因为我不想让 popper 变长。

  3. 现在看起来像这样:

enter image description here

最佳答案

可以在代码中加入flex-wrap: wrap (flexWrap: 'wrap') 这样每次满格的时候都会跳到下一行宽度。

<Popper style={{ display: 'flex', maxWidth: '200px', flexWrap: 'wrap' }}>
<div style={{ marginRight: '20px' }}><Avatar /></div>
<div style={{ marginRight: '20px' }}><Avatar /></div>
</Popper>

关于javascript - 如何在 flex div 中打断,以便溢出的元素可以进入下一行是 css?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57081599/

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