LOGO

flex布局各种对齐方式


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* flex布局 */
.flex-row {
display: flex;
flex-direction: row;
}

/* 水平平均分布 */
.flex_around {
@extend .flex-row;
justify-content: space-around;
}

/* 水平两端对齐 */
.flex_between {
@extend .flex-row;
justify-content: space-between;
}

/** 水平右对齐 */
.flex_end {
@extend .flex-row;
justify-content: flex-end;
}

/* 水平居中对齐 */
.flex_center {
@extend .flex-row;
justify-content: center;
}

/* 垂直居中 */
.flex_center_align {
@extend .flex-row;
align-items: center;
}

/* 水平平均垂直居中 */
.flex_center_around {
@extend .flex-row;
justify-content: space-around;
align-items: center;
}

文章作者: 68HTML
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 68HTML !
  目录