水平垂直居中,除了定位,margin/padding,表格,flex的方式,还可以用“grid网格布局”:

 .parent {
	display: grid;
	place-items: center;
  }

这样子元素就在父级盒子内一直水平垂直居中,超级简单的方法!