不定宽高垂直居中的方法

比较常用的方法

.box{
   width:300px;//随意
   height: 300px;//随意
   border: 1px solid black;
   position: absolute;
   left: 50%;
   top:50%;
   transform: translateX(-50%) translateY(-50%);
}

你可能感兴趣的:(不定宽高垂直居中的方法)