我是新的编码,所以请帮助解决这个问题.我附上了一张照片.在最后一张卡片之后,我需要一些我不能做的空间



在这里输入图像描述在最后一张卡片后面我需要一些空间,所以请帮我。

我可以看到有限的数量,我猜你应该使用显示flex。像这样

div.glowingBoxesContainer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
div.glowingBoxesContainer div.glowingBox{
width: calc(33.33% - 30px); //this will take into consideration margins
margin: 15px;
min-width: 300px;//this will force it to wrap if 33% is smaller than 300px
}

相关内容

  • 没有找到相关文章

最新更新