/* Positional alignment */align-content:center;/* Pack items around the center */align-content:start;/* Pack items from the start */align-content:end;/* Pack items from the end */align-content:flex-start;/* Pack flex items from the start */align-content:flex-end;/* Pack flex items from the end */align-content:left;/* Pack items from the left */align-content:right;/* Pack items from the right *//* Baseline alignment */align-content:baseline;align-content:firstbaseline;align-content:lastbaseline;/* Distributed alignment *//* Distribute items evenlyThe first item is flush with the start,the last is flush with the end */align-content:space-between;/* Distribute items evenlyItems have a half-size spaceon either end */align-content:space-around;/* Distribute items evenlyItems have equal space around them */align-content:space-evenly;/* Distribute items evenlyStretch 'auto'-sized items to fitthe container */align-content:stretch;/* Overflow alignment */align-content:safecenter;align-content:unsafecenter;/* Global values */align-content:inherit;align-content:initial;align-content:unset;
Строки располагаются в начале поперечной оси. Каждая следующая строка идёт вровень с предыдущей.
center
Строки располагаются по центру контейнера.
flex-end
Строки располагаются начиная с конца поперечной оси. Каждая предыдущая строка идёт вровень со следующей.
space-between
Строки равномерно распределяются в контейнере и расстояние между ними одинаково.
space-around
Строки равномерно распределяются таким образом, чтобы пространство между двумя соседними строками было одинаковым. Пустое пространство перед первой строкой и после последней строки равно половине пространства между двумя соседними строками.