CSS上下左右居中

不固定宽高

 position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%,-50%);

固定宽高

  300px;

    height: 350px;

    margin: auto;

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

原文地址:https://www.cnblogs.com/zhaoyun4122/p/15795162.html