首页 > 代码库 > 显示全屏,内容上下居中

显示全屏,内容上下居中

关键:vh; flex;

    .container {
      height: 100vh; /* 100vh = viewport height*/
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

 

显示全屏,内容上下居中