CSS之各种居中

jopen 8年前

本博客讨论居中情况设定为 总宽度不定,内容宽度不定 的情况。(改变大小时,仍然居中)。

特别说明:在元素设置 position:absolute; 来设置居中效果时,除去博客下介绍的css3方法外,还可以使用负的 margin 来居中,这样解决了兼容性的问题,但是只适用于宽高已知的情况(因为负的偏移量为元素宽高的一半)。宽高改变时,不再是居中效果。

在这些布局中的子元素,因为其属性设置,都默认为内容宽度。

本博客所有居中的例子,只讨论css的实现,html代码统一如下:

<div class="parent">      <div class="child">demo</div>  </div>
</div>

1. 水平居中

1.1 inline-block 配合 text-align

.parent{      text-align: center;  }  .child{      display: inline-block;  }
</div>

优点:兼容性非常好,只需要添加只需要在子元素的css中添加 *display:inline 和 *zoom:1 就可兼容到IE6、7;缺点:内部文字也会水平居中,需消除影响。

1.2 table 配合 margin

.child{      display:table;      margin: 0 auto;  }
</div>

优点:设置特别简单,只需对子元素进行设置,支持IE8+,需支持IE6,7时,可更换子元素为表格结构。

1.3 abasolute 配合 transform

.parent{      position:relative;  }  .child{      position:absolute;      left:50%;      transform: translateX(-50%);  }
</div>

优点:居中元素不对其他元素产生影响。缺点:CSS3新属性支持IE9+,低版本浏览器不支持。

2. 垂直居中

2.1 table-cell 配合 vertical-align

.parent{      display: table-cell;      vertical-align:middle;  }
</div>

优点:设置简单,只需对父元素进行设置,兼容到IE8+,需兼容地版本浏览器时,可更换 div 为表格结构。

2.2 absolute 配合 tranform

.parent{      position:relative;  }  .child{      position:absolute;      top: 50%;      transform: translateY(-50%);  }
</div>

优点:居中元素不对其他元素产生影响。缺点:CSS3新属性支持IE9+,低版本浏览器不支持。

3. 水平+垂直居中

3.1 inline-block 配合 text-align 加上 table-cell 配合 vertical-align

.parent{      display: table-cell;      vertical-align:middle;      text-align:center;  }  .child{      display: inline-block;  }
</div>

优点:综合前两中方法,兼容性好!支持IE8+,低版本浏览器也好兼容。缺点:设置较为复杂。

3.2 absolute 配合 transform

.parent{      position: relative;  }  .child{      position: absolute;      left: 50%;      top: 50%;      transform: translate(-50%,-50%);  }
</div>

优点:居中元素不对其他元素产生影响。缺点:CSS3新属性支持IE9+,低版本浏览器不支持。

4. 全能的 flex

css3新增布局属性,布局简单,强大,性能略差,只支持IE10+,在移动端使用较多。

4.1 水平居中

/*当父元素设置display: flex;时,子元素为flex-item,默认为内容宽度。*/  .parent{      display: flex;      justify-content: center;  }  /* 在设置子元素为margin: 0 auto;时,可删除父元素的justify-content: center;同样可以达到居中效果*/  /*  .child{          margin: 0 auto;       }*/
</div>

4.2 垂直居中

.parent{      display: flex;      align-items: center;  }
</div>

4.3 水平垂直居中

.parent{      display: flex;      justify-content: center;      align-items: center;  }  /*如同flex布局的第一部分一样这里也可以对子元素进行下面的设置:同时删除上面的除去display外的其他属性*/  /*  .child{          margin:auto;      } */
</div> </div>

来自: http://guowenfh.github.io/2016/01/06/css-position-middle/