Shorthand выравнивания
В Grid/Flex:
place-content = align-content + justify-content;
place-items = align-items + justify-items;
- также есть
place-self = align-self + justify-self.
.grid {
display: grid;
place-content: center;
place-items: center;
}
Одно значение применяется к обеим осям; два — сначала block, затем inline (place-items: start stretch). Сокращает шум в коде выравнивания.