as the title, I use flex css layout, I had seen the link( Flex-box: Align last row to grid). but the last row can not aligned.
thanks
html,body {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
div {
width: 300px;
height: 300px;
background-color: blue;
border: 1px solid red;
}
body:after {
content: "";
flex: auto;
}
<body style='display: flex; flex-wrap: wrap; justify-content: space-around;'>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</body>