不知道宽高
1.父元素相对定位
子元素绝对定位
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
2.绝对定位方式
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
知道宽高就随便玩了