由于 justify-content: space-around 规则,当第 4 个块向下跳时,它变成了中间
我可以以某种方式仍然使用空格规则,但使最后一个块不要跳到中心,而是跳到左侧,就像屏幕截图中那样?PS我仍然需要 justify-content: space-around 因为它具有响应式边距
这是代码https://jsfiddle.net/s4fbtkyg/
<html>
<body>
<style>
.block{
background-color: grey;
flex-basis: 100px;
margin-bottom: 5px;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
</style>
<div class="container">
<div class="block">1</div>
<div class="block">2</div>
<div class="block">3</div>
<div class="block">4</div>
</div>
</body>
</html>
莫回无
相关分类