avatar

CSS实现元素水平居中&垂直居中&水平垂直居中

水平居中

  • 行内元素

    首先看它的父元素是不是块级元素,如果是,则直接给父元素设置 text-align: center;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    text-align: center;
    }
    </style>

    <div id="father">
        <span id="son">我是行内元素</span>
    </div>

    如果不是,则先将其父元素设置为块级元素,再给父元素设置 text-align: center;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    <style>
    #father {
    display: block;
    width: 500px;
    height: 300px;
    background-color: skyblue;
    text-align: center;
    }
    </style>

    <span id="father">
        <span id="son">我是行内元素</span>
    </span>

    效果:
    行内水平居中

    • 块级元素

    方案一:(分宽度定不定两种情况)

    定宽度: 需要谁居中,给其设置 margin: 0 auto; (作用:使盒子自己居中)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    }

    #son {
    width: 100px;
    height: 100px;
    background-color: green;
    margin: 0 auto;
    }
    </style>

    <div id="father">
        <div id="son">我是块级元素</div>
    </div>

    效果:
    块级元素水平居中1

    不定宽度:默认子元素的宽度和父元素一样,这时需要设置子元素为display: inline-block;display: inline;即将其转换成行内块级/行内元素,给父元素设置text-align: center;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    text-align: center;
    }

    #son {
    background-color: green;
    display: inline;
    }
    </style>

    <div id="father">
        <div id="son">我是块级元素</div>
    </div>

    效果:(将#son转换成行内元素,内容的高度撑起了#son的高度,设置高度无用)
    块级元素水平居中2

    方案二:使用定位属性

    首先设置父元素为相对定位,再设置子元素为绝对定位,设置子元素的left:50%,即让子元素的左上角水平居中;

    定宽度:设置绝对子元素的 margin-left: -元素宽度的一半px; 或者设置transform: translateX(-50%);

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    width: 100px;
    height: 100px;
    background-color: green;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    不定宽度:利用css3新增属性transform: translateX(-50%);

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    height: 100px;
    background-color: green;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:

    块级元素水平居中3

    方案三:使用flexbox布局实现(宽度定不定都可以)

    使用flexbox布局,只需要给待处理的块状元素的父元素添加属性 display: flex; justify-content: center;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    display: flex;
    justify-content: center;
    }

    #son {
    width: 100px;
    height: 100px;
    background-color: green;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:

    块级元素水平居中3

    垂直居中

    • 单行的行内元素

    只需要设置单行行内元素的”行高等于盒子的高”即可;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    }

    #son {
    background-color: green;
    line-height: 300px;
    }
    </style>

    <div id="father">
    <span id="son">我是单行的行内元素</span>
    </div>

    效果:
    单行行内垂直居中

    • 多行的行内元素

    使用给父元素设置display:table-cell;和vertical-align: middle;属即可;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    display: table-cell;
    vertical-align:middle;
    }

    #son {
    background-color: green;
    }
    </style>

    <div id="father">
    <span id="son">我是多行的行内元素我是多行的行内元素我是多行的行内元素我是多行的行内元素我是多行的行内元素我是多行的行内元素我是多行的行内元素我是多行的行内元素</span>
    </div>

    效果:
    多行行内垂直居中

    • 块级元素

    方案一:使用定位

    首先设置父元素为相对定位,再设置子元素为绝对定位,设置子元素的top: 50%,即让子元素的左上角垂直居中;

    定高度:设置绝对子元素的margin-top: -元素高度的一半px; 或者设置transform: translateY(-50%);

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    height: 100px;
    background-color: green;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    不定高度:利用css3新增属性transform: translateY(-50%);

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    width: 100px;
    background-color: green;
    position: absolute;
    left: 50%;
    transform: translateY(-50%);
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:
    块级元素垂直居中

    方案二:使用flexbox布局实现(高度定不定都可以)

    使用flexbox布局,只需要给待处理的块状元素的父元素添加属性 display: flex; align-items: center;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    display: flex;
    align-items: center;
    }

    #son {
    width: 100px;
    height: 100px;
    background-color: green;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:
    块级元素垂直居中

    水平垂直居中

    • 已知高度和宽度的元素

    方案一:设置父元素为相对定位,给子元素设置绝对定位,top: 0; right: 0; bottom: 0; left: 0; margin: auto;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    width: 100px;
    height: 100px;
    background-color: green;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:
    水平垂直居中1

    方案二:设置父元素为相对定位,给子元素设置绝对定位,left: 50%; top: 50%; margin-left: --元素宽度的一半px; margin-top: --元素高度的一半px;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    width: 100px;
    height: 100px;
    background-color: green;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:
    水平垂直居中1

    • 未知高度和宽度的元素

    方案一:使用定位属性

    设置父元素为相对定位,给子元素设置绝对定位,left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%);

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    position: relative;
    }

    #son {
    background-color: green;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:
    水平垂直居中2

    方案二:使用flex布局实现

    设置父元素为flex定位,justify-content: center; align-items: center;

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <style>
    #father {
    width: 500px;
    height: 300px;
    background-color: skyblue;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    #son {
    background-color: green;
    }
    </style>

    <div id="father">
    <div id="son">我是块级元素</div>
    </div>

    效果:
    水平垂直居中2

文章作者: Darkerbin
文章链接: https://darkerbin.github.io/2020/04/08/CSS实现元素水平居中&垂直居中&水平垂直居中/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 解忧杂货店小店员
打赏
  • 微信
    微信
  • 支付寶
    支付寶