1,
水平 margin: 0 auto;
垂直 position: absolute ;
top: 50%;
margin-top: -自己的一半;
2.
水平 margin: 0 auto;
垂直 position: absolute ;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
3.
水平垂直 position: absolute ;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
4.
水平垂直 display: flex;
justify-content: center;
align-items: center;