张卓
2022-09-20 5aead44ba1be31db948dfd8362c2bfcbedbbce29
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
.d-none             { display: none !important; }
.d-block            { display: block !important; }
.d-inline-block     { display: inline-block !important; }
.d-flex             { display: flex !important; }
.d-inline-flex      { display: inline-flex !important; }
 
.justify-content-start   { justify-content: flex-start !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around  { justify-content: space-around !important; }
 
.align-items-start       { align-items: flex-start !important; }
.align-items-end         { align-items: flex-end !important; }
.align-items-center      { align-items: center !important; }
.align-items-baseline    { align-items: baseline !important; }
.align-items-stretch     { align-items: stretch !important; }
 
.align-content-start     { align-content: flex-start !important; }
.align-content-end       { align-content: flex-end !important; }
.align-content-center    { align-content: center !important; }
.align-content-between   { align-content: space-between !important; }
.align-content-around    { align-content: space-around !important; }
.align-content-stretch   { align-content: stretch !important; }
 
.align-self-auto         { align-self: auto !important; }
.align-self-start        { align-self: flex-start !important; }
.align-self-end          { align-self: flex-end !important; }
.align-self-center       { align-self: center !important; }
.align-self-baseline     { align-self: baseline !important; }
.align-self-stretch      { align-self: stretch !important; }
 
.flex-1 { flex: 1 !important; }