https://css-tricks.com/almanac/properties/a/align-self/
It makes possible to override the align-items value for specific flex items.
允许flex item重载flex container里定义的align-items的值。
语法:
align-self: auto | flex-start | flex-end | center | baseline | stretch
.flex-item {
align-self: flex-end;
}
这五种属性对应的效果如下: