未知宽度的div使内容水平垂直居中

方法一:使用display:flex;justify-content:center;align-items: center;属性

代码如下:
<style>
#box{
display: flex;
justify-content:center;
align-items: center;
height: 500px;
}
</style>
<div ></div>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-05
  • 2022-12-23
  • 2021-06-22
  • 2021-10-14
  • 2021-11-06
猜你喜欢
  • 2022-12-23
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-02-19
相关资源
相似解决方案