1/* Positional alignment */
2justify-content: center; /* Pack items around the center */
3justify-content: start; /* Pack items from the start */
4justify-content: end; /* Pack items from the end */
5justify-content: flex-start; /* Pack flex items from the start */
6justify-content: flex-end; /* Pack flex items from the end */
7justify-content: left; /* Pack items from the left */
8justify-content: right; /* Pack items from the right */
9
10/* Baseline alignment */
11/* justify-content does not take baseline values */
12
13/* Normal alignment */
14justify-content: normal;
15
16/* Distributed alignment */
17justify-content: space-between; /* Distribute items evenly
18 The first item is flush with the start,
19 the last is flush with the end */
20justify-content: space-around; /* Distribute items evenly
21 Items have a half-size space
22 on either end */
23justify-content: space-evenly; /* Distribute items evenly
24 Items have equal space around them */
25justify-content: stretch; /* Distribute items evenly
26 Stretch 'auto'-sized items to fit
27 the container */
28
29/* Overflow alignment */
30justify-content: safe center;
31justify-content: unsafe center;
32
33/* Global values */
34justify-content: inherit;
35justify-content: initial;
36justify-content: unset;
37
1/* Positional alignment */
2justify-content: center; /* Pack items around the center */
3justify-content: start; /* Pack items from the start */
4justify-content: end; /* Pack items from the end */
5justify-content: flex-start; /* Pack flex items from the start */
6justify-content: flex-end; /* Pack flex items from the end */
7justify-content: left; /* Pack items from the left */
8justify-content: right; /* Pack items from the right */
9
10/* Baseline alignment */
11/* justify-content does not take baseline values */
12
13/* Normal alignment */
14justify-content: normal;
15
16/* Distributed alignment */
17justify-content: space-between; /* Distribute items evenly
18 The first item is flush with the start,
19 the last is flush with the end */
20justify-content: space-around; /* Distribute items evenly
21 Items have a half-size space
22 on either end */
23justify-content: space-evenly; /* Distribute items evenly
24 Items have equal space around them */
25justify-content: stretch; /* Distribute items evenly
26 Stretch 'auto'-sized items to fit
27 the container */
28
29/* Overflow alignment */
30justify-content: safe center;
31justify-content: unsafe center;
32
33/* Global values */
34justify-content: inherit;
35justify-content: initial;
36justify-content: unset;