css 水平居中、垂直居中、水平垂直居中

居中布局

水平居中

行内元素: text-align: center
块级元素: margin: 0 auto
absolute + transform
flex + justify-content: center
垂直居中

line-height: height
absolute + transform
flex + align-items: center
table
水平垂直居中

absolute + transform
flex + justify-content + align-items

转子 作者:郭东东
链接:https://juejin.im/post/5c64d15d6fb9a049d37f9c20

你可能感兴趣的:(css 水平居中、垂直居中、水平垂直居中)