一、水平居中
1、inline 元素用text-align: center;即可,如下:
2、block 元素可使用margin: auto;
3、绝对定位元素可结合left和margin实现,但是必须知道宽度。
二、垂直居中
1、inline 元素可设置line-height的值等于height值,如单行文字垂直居中:
2、绝对定位元素,可结合left和margin实现,但是必须知道尺寸。
- 优点:兼容性好
- 缺点:需要提前知道尺寸12345678910111213.container {position: relative;height: 200px;}.item {width: 80px;height: 40px;position: absolute;left: 50%;top: 50%;margin-top: -20px;margin-left: -40px;}
3、绝对定位可结合transform实现居中。
- 优点:不需要提前知道尺寸
- 缺点:兼容性不好12345678910111213.container {position: relative;height: 200px;}.item {width: 80px;height: 40px;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);background: blue;}
4、绝对定位结合margin: auto,不需要提前知道尺寸,兼容性好。