css实现块级元素水平垂直居中的方法?
父级给相对定位,子级给绝对定位,margin设置为auto,上下左右值设为0。
父级给相对定位,子级给绝对定位,设置left和top为50%,再向左和向上移动负的子级一半。
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
父级设置display:flex;justify-content: cneter;align-items: center;
父级设置display: table-cell;vertical-align: middle;text-align: center;子级设置display: inline-block;