三行CSS代码实现水平垂直居中


通过3行CSS,可以轻松地将任何文字或图形水平和垂直居中:


.center {
  display: flex;
  align-items: center;
  justify-content: center;       
}