flex.less 181 字节
Newer Older
1 2 3 4 5 6 7
// flex布局
.flex(@direction: row, @justify: center, @align: center) {
    display: flex;
    flex-direction: @direction;
    justify-content: @justify;
    align-items: @align;
}