直接看代码就可以了吧

<div class="a">a</div>
<div class="flex">flex</div>
div {
  height: 300px;
  width: 300px;
  background-color: #ededed;
  margin-top: 20px;
}

.a {
  text-align: center;
  line-height: 300px;
}

.flex {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
}

在这里插入图片描述

喜欢或对你有帮助,请点个赞吧 。

有错误或者疑问还请评论指出。

我的个人网站 --> 点击访问

END