Flex
Display Mode
d-{MODE}
allows you to controls the display mode of elements. Where {MODE}
is either
flex
, or inline-flex
.
Available Breakpoints:
s: <= 768px
m: >= 769px
l: >= 1280px
xl: >= 1920px
display: flex
d-flex display: inline-flex
d-inline-flex
d-flex display: inline-flex
d-inline-flex
Direction
flex-row
1
2
3
4
flex-row-reverse
1
2
3
4
flex-column
1
2
3
4
flex-column-reverse
1
2
3
4
flex-wrap
1
2
3
4
5
6
7
8
9
10
11
12
flex-nowrap
1
2
3
4
5
6
7
8
9
10
11
12
Justify Content, Align Items, Align Content
justify-content-start
1
2
3
4
justify-content-end
1
2
3
4
justify-content-center
1
2
3
4
justify-content-between
1
2
3
4
justify-content-around
1
2
3
4
justify-content-evenly
1
2
3
4
align-items-start
1
2
3
4
align-items-end
1
2
3
4
align-items-center
1
2
3
4
align-items-baseline
1
2
3
4
align-items-stretch
1
2
3
4
align-content-start
1
2
3
4
align-content-end
1
2
3
4
align-content-center
1
2
3
4
align-content-between
1
2
3
4
align-content-around
1
2
3
4
align-content-evenly
1
2
3
4