欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css div垂直居中

程序员文章站 2022-04-24 16:49:41
...

方式一
优点:不用给html设置100%,宽度不固定

position: absolute;
 left: 0;
 right: 0;
 top: 50%;
 transform: translateY(-50%);

方式二:
使用flex

html,body{
height:100%;
width:100%
}
.div{
display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
}

还有其他一些宽高固定的方式。