CSS Flexbox / Grid Centered Box [已关闭]

bfrts1fy  于 2023-05-02  发布在  其他
关注(0)|答案(1)|浏览(97)

已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。

6天前关闭。
Improve this question
我在CSS中遇到了以下问题:CSS Grid
我不知道如何在CSS和HTML中实现这一点。有人有主意吗?使用TailwindCSS
我已经尝试过网格模板,不幸的是没有成功

svmlkihl

svmlkihl1#

看起来像是有间隙的弯曲。尝试

.container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
}

相关问题