答案 0 :(得分:3)
使用flexbox
来实现上述配置。
请检查并告诉我您的反馈意见。谢谢!
.wrapper {
display: flex;
flex-wrap: wrap;
flex-direction: column;
height: 150px;
}
.wrapper > div {
background: #ddd;
line-height: 50px;
height: 50px;
margin: 5px;
text-align: center;
}

<div class="wrapper">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
</div>
&#13;