欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

(转载,非原创)CSS实现水平垂直居中的多种方式

程序员文章站 2022-04-26 14:46:33
...

大体可以分为以下几种方式:

仅居中元素定宽高适用

  • absolute + 负margin
  • absolute + margin auto
  • absolute + calc

居中元素不定宽高

  • absolute + transform
  • lineheight
  • writing-mode
  • table
  • css-table
  • flex
  • grid

ok,我们先看下仅居中元素定宽高的情况

absolute + 负margin(绝对定位的百分比是相对于父元素的宽高,负的外边距可以让元素向相反方向定位,通过指定子元素的外边距为子元素宽度一半的负值,就可以让子元素居中了,css代码如下)

例子如下    

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;
            }
            
            .box {
                background: green;
            }
            
            .box.size {
                width: 100px;
                height: 100px;
                position: absolute;
                top: 50%;// 绝对定位的百分比是相对于父元素的
                left: 50%;// 这里其实就是子div的左上角在父元素的中心点上,然后子元素向上和向左移动
                margin-left: -50px;// 这里其实是向左移动了子元素宽度一半
                margin-top: -50px;// 这里其实是向上移动了子元素高度一半
            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box size">123123</div>
        </div>
    </body>

</html>

优点:便于理解,但是需要知道子元素宽度和高度.

1.2  absolute + margin auto

此种方式是通过设置各个方向的距离都是0,此时再讲margin设为auto,就可以在各个方向上居中;

代码如下

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;
            }
            
            .box {
                background: green;
                position: absolute;
                top: 0;//  距离父元素 上下左右距离都是0,设置margin 为auto
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
            }
            
            .box.size {
                width: 100px;
                height: 100px;

            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box size">123123</div>
        </div>
    </body>

</html>

优点:兼容性很好,缺点是需要知道子元素的宽高.

1.3 absolute + calc   

css3带来了计算属性,既然top的百分比是基于元素的左上角,那么在减去宽度的一半就好了,代码如下;

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;
            }
            
            .box {
                background: green;
                position: absolute;
                top: calc(50% - 50px); // 这里其实就是自动帮助我们计算
                left: calc(50% - 50px);
            }
            
            .box.size {
                width: 100px;
                height: 100px;
            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box size">123123</div>
        </div>
    </body>

</html>

优点是:兼容性比价好,缺点是需要知道子元素宽度和高度

ok,接着我们看下不定宽高的子元素如何居中.

2.1  absolute + transform

css3新增的transform,transform的translate属性也可以设置百分比,其是相对于自身的宽和高,所以可以讲translate设置为-50%,就可以做到居中了,代码如下

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;
            }
            
            .box {
                background: green;
            }
            
            .box.size {
                width: 100px;
                height: 100px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);// 这里的百分比是相对于自身
                //transform 属性向元素应用 2D 或 3D 转换。该属性允许我们对元素进行旋转、缩放、移动或倾斜。
            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box size">123123</div>
        </div>
    </body>

</html>

2.2 lineheight

利用行内元素居中属性也可以做到水平垂直居中;把box设置为行内元素,通过text-align就可以做到水平居中,通过vertical-align也可以在垂直方向做到居中,代码如下

代码如下所示

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                line-height: 300px;// 行高,设置为高度一致
                text-align: center;// 水平居中显示
                font-size: 0px;
            }
            
            .box {
                background: green;
            }
            
            .box.size {
                width: 100px;
                height: 100px;

                font-size: 16px;
                display: inline-block;
                vertical-align: middle;// 属性设置元素的垂直对齐方式。 通过vertical-align可以设置为垂直居中;
                line-height: initial;
                text-align: left;
                /* 修正文字 */
            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box size">123123</div>
        </div>
    </body>

</html>

writing-mode(了解)

writing-mode可以改变文字的显示方向,比如可以通过writing-mode让文字的显示变为垂直方向;

<div class="div1">水平方向</div>
<divclass="div2">垂直方向</div>
.div2{
    writing-mode:vertical-lr;
}

效果如下

水平方向
垂
直
方
向

所有水平方向上的css属性,都会变为垂直方向上的属性,比如text-align,通过writing-modetext-align就可以做到水平和垂直方向的居中了,只不过要稍微麻烦一点;

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:writing-mode</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                writing-mode: vertical-lr;
                text-align: center;
            }
            
            .box {
                background: green;
            }
            
            .wp-inner {
                border: 1px solid blue;
                text-align: center;
                writing-mode: horizontal-tb;
                display: inline-block;
                width: 100%;
            }
            
            .box {
                display: inline-block;
                margin: auto;
                text-align: left;
            }
            
            .box.size {
                width: 100px;
                height: 100px;
                /* 修正文字 */
            }
            
            .div2 {
                writing-mode: vertical-lr;
            }
        </style>
    </head>

    <body>
        <div class="div1">水平方向</div>
        <div class="div2">垂直方向</div>
        <div class="wp">
            <div class="wp-inner">
                <div class="box">123123</div>
            </div>
        </div>
    </body>

</html>

 

css-table

css新增的table属性,可以让我们把普通元素,变为table元素的现实效果,通过这个特性也可以实现水平垂直居中

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;

                text-align: center;
                display: table-cell;

                vertical-align: middle;
            }
            
            .box {
                display: inline-block;
                background-color: green;
                width: 100px;
                height: 100px;
                text-align: center;

            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box">123123</div>
        </div>
    </body>

</html>

 

flex

flex作为现代的布局方案,颠覆了过去的经验,只需几行代码就可以优雅的做到水平垂直居中

目前在移动端已经完全可以使用flex了,PC端需要看自己业务的兼容性情况

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .box {
                display: inline-block;
                background-color: green;
                width: 100px;
                height: 100px;
                text-align: center;
                
            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box">123123</div>
        </div>
    </body>

</html>

 

grid

css新出的网格布局,由于兼容性不太好,通过grid也可以实现水平垂直居中

代码量也很少,但兼容性不如flex,不推荐使用

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>水平垂直居中的多种方式:仅居中元素定宽高</title>
        <style>
            .wp {
                border: 1px solid red;
                width: 300px;
                height: 300px;
                position: relative;
                display: grid;
            }
            
            .box {
                display: inline-block;
                background-color: green;
                align-self: center;
                justify-self: center;
            }
        </style>
    </head>

    <body>
        <div class="wp">
            <div class="box">123123</div>
        </div>
    </body>

</html>

总结

下面对比下各个方式的优缺点简单总结下

  • PC端有兼容性要求,宽高固定,推荐absolute + 负margin

  • PC端有兼容要求,宽高不固定,推荐css-table

  • PC端无兼容性要求,推荐flex

  • 移动端推荐使用flex

 

 

 

 

 

 

 

 

 

 

 

 

相关标签: CSS 居中