Свойство align-self выравнивает флекс-элементы текущей строки, переписывая значение align-items. Если у какого-либо flex-элемента margin в поперечной оси выставлен в auto, то align-self игнорируется.
/* Keyword values */align-self:auto;align-self:normal;/* Positional alignment *//* align-self does not take left and right values */align-self:center;/* Put the item around the center */align-self:start;/* Put the item at the start */align-self:end;/* Put the item at the end */align-self:self-start;/* Align the item flush at the start */align-self:self-end;/* Align the item flush at the end */align-self:flex-start;/* Put the flex item at the start */align-self:flex-end;/* Put the flex item at the end *//* Baseline alignment */align-self:baseline;align-self:firstbaseline;align-self:lastbaseline;align-self:stretch;/* Stretch 'auto'-sized items to fit the container *//* Overflow alignment */align-self:safecenter;align-self:unsafecenter;/* Global values */align-self:inherit;align-self:initial;align-self:unset;
<!doctype html><html><head><metacharset="utf-8"/><title>align-items</title><style>.flex-container{display:flex;align-items:flex-start;height:160px;/* Высота контейнера */}.flex-item{margin-left:1rem;/* Расстояние между блоками */padding:10px;/* Поля вокруг текста */width:33.333%;/* Ширина блоков */}.flex-item:first-child{margin-left:0;}.flex-item:hover{align-self:stretch;/* Растягиваем при наведении */}.item1{background:#f0ba7d;}.item2{background:#cae2aa;}.item3{background:#a6c0c9;}</style></head><body><divclass="flex-container"><divclass="flex-item item1">
Фенек — лисица, живущая в пустынях Северной
Африки. Имеет достаточно миниатюрный размер
и своеобразную внешность с большими ушами.
</div><divclass="flex-item item2">
Корсак — хищное млекопитающее рода лисиц.
</div><divclass="flex-item item3">
Лисица — хищное млекопитающее семейства
псовых, наиболее распространённый и самый
крупный вид рода лисиц.
</div></div></body></html>