8

【前端芝士树】如何对元素块实现垂直居中?

clipboard.png

水平居中和垂直居中是前端开发过程中肯定会遇到的问题,下面我讲解几种常见的方式。

1/ 利用Flex布局来实现极速居中

The HTML

<div class="container">
    <!--// Any content in here will be centered.-->
    <img src="fireworks.jpg" alt="fireworks">
</div>

The CSS

.container{
    display: flex;
    justify-content: center;
    align-items: center;
}

2/ 绝对定位下,已知目标元素宽高,利用CSS或者JS实现固定长宽容器的居中

The HTML

.item{
    margin:0 auto;
    width:200px;
    height:200px;
}

2.1 margin 设为宽度的一半或者auto

.item{
    width:300px;
    height:200px;
    
    position:absolute;
    left:50%;
    top:50%;
    margin:-100px 0 0 -150px;
    //或者 margin: auto;
}

2.2 使用jquery计算 left 和 top 的值

$(window).resize(function(){

    $('.item').css({
        position:'absolute',
        left: ($(window).width() - $('.item').outerWidth())/2,
        top: ($(window).height() - $('.item').outerHeight())/2
    });

});

// To initially run the function:
$(window).resize();

3/ Fixed定位下,利用margin:auto实现fixed元素的居中

The CSS

.item{
   position: fixed;
   margin: auto;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;

   width: 200px;
   height: 100px;
}

4/ 利用display: table-cell来实现居中

注意,父元素的宽度需要被定义,同时父元素的vertical-align以及item的margin: auto都是缺一不可的
The CSS

 .container {
    width: 400px;
    display: table-cell;
    vertical-align: middle;
}

.item {
    margin: 0 auto;
}

云中的猫
769 声望56 粉丝

生活是一个BUG。