📜  将文本移动到页面中心的弹性框 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:05.152000             🧑  作者: Mango

代码示例1
// Assuming a horizontally centered row of items for the parent but it doesn't have to be
.parent {
  align-items: center;
  display: flex;
  justify-content: center;
}

.child {
  display: flex;
  align-items: center;
}