水平/垂直居中
水平居中
text-align: center;
width: 100px; margin: 0 atuo;
display: flex; justify-content: center;
position: absolute; left: 0; right: 0; margin: 0 auto;
position: absolute; left: 50%; transform: translateX(-50%);
position: absolute; width: 100px; left: 50%; margin-left: -50px;
position: absolute; width: 100px; left: calc(50% - 50px);
垂直居中
height: 10px; line-height: 10px;
display: inline-block; vertical-align: middle;
display: table-cell; vertical-align: middle;
display: flex; align-items: center;
position: absolute; top: 0; bottom: 0; margin: auto 0;
position: absolute; top: 50%; transform: translateY(-50%);
position: absolute; height: 100px; top: 50%; margin-top: -100px;
position: absolute; height: 100px; top: calc(50% - 100px);