在将弹性容器的高度固定到最高的孩子的同时包裹柔性物品

时间:2016-10-15 18:29:27

标签: html css css3 flexbox

我在flex-container中有4个div,想减少空间 在附图(Current)中指示的两个div之间。 我已经给了flex-container“wrap”-prop。我该怎么处理?

当前

current_state

所需

desired_state

HTML

<div className="flex-container">
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
</div>

CSS

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;

    div {
        width: 30%;
        min-width: 300px;
    }
}

0 个答案:

没有答案