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;
            }
        }
    }

猜你喜欢

转载自blog.csdn.net/qq719756146/article/details/84647375