css设置元素垂直居中

.content {
  position: relative;
   top: 50%; 
   transform: translateY(-50%);
}
原文地址:https://www.cnblogs.com/cuilichao/p/14984893.html