1. 程式人生 > >css排版左對齊

css排版左對齊

template:

            <div class="box">
                <div v-for="">
                    <div>內容</div>
                </div>
            </div>

style:

    .box {
        display: flex;
        flex-wrap: wrap;
        div {
            width: 33.33%;
            padding: 0 15px;
            div {
                background: #fff;
            }
        }
    }