CSS居中的方法

一丶文字居中法(行内元素)

1.水平居中(单行)

给父元素添加一个==text-align: center;==,前提是父元素必须是个块级元素

  • HTML

    <div id="dad">
        <span id="son">子元素</span>
    </div>
    
  • CSS

    <style>
        #dad {
            display: block;
            width: 500px;
            height: 300px;
            background-color: #00ffdd;
            
            /*水平居中*/
            text-align: center;
           }
          #son{
    
          background-color: #ffe500;
          
           }
    </style>
    
  • 效果


    1597642800089.png

1.垂直居中(单行)

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

  • HTML

    <div id="dad">
        <span id="son">子元素</span>
    </div>
    
  • CSS

    <style>
        #dad {
            display: block;
            width: 500px;
            height: 300px;
            background-color: #00ffdd;
           }
          #son{
    
          background-color: #ffe500;
          
              /*垂直居中*/
          line-height: 500px
           }
    </style>
    
  • 效果
1597651802223.png

3.水平垂直居中(单行)

让子元素的行高==line-height: 父元素高度;==和父元素高度相等就可以实现文字垂直居中了

  • HTML

    <div id="father">
        <span id="son">子元素</span>
    </div>
    
  • CSS
    <style>
  #dad{
      margin: 0 auto;
      background-color: #00ffdd;
      width: 500px;
      height: 500px;
      /*水平居中*/
      text-align: center;
  }
  #son{

      background-color: #ffe500;
      
      /*垂直居中*/
      line-height: 500px;
  }
    </style>
  • 效果
1597643398651.png

4.多行的行内元素水平垂直居中

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

  • HTML

    <div id="father">
        <span id="son">子元素</span>
    </div>
    
  • CSS
  <style>
#dad{
    margin: 0 auto;
    background-color: #00ffdd;
    width: 500px;
    height: 500px;

    display: table-cell;
    vertical-align:middle;
}
#son{

    background-color: #ffe500;
    width: 100px;
    height: 100px;

}
  </style>
  • 效果
1597652188959.png

二丶图片居中法

1.水平居中

  • HTML

    <div id="dad">
        <img src="../微信图片_20200804171152.png" alt="">
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
          /*水平居中*/
          text-align: center;
      }
      #dad img{
          width: 100px;
          height: 100px;
          
      }
        </style>
    
  • 效果

1597644174119.png

2.水平垂直居中

  • HTML

    <div id="dad">
        <img src="../微信图片_20200804171152.png" alt="">
    </div>
    
  • CSS

        <style>
      # dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
          
          
          /*水平居中*/
          text-align center;
          /*垂直居中*/
          line-height: 500px;
      }
      # dad img{
          width: 100px;
          height: 100px;
    
          /*垂直居中*/
          /*display: block;*/
          vertical-align: middle;
    
      }
        </style>
    
  • 效果

1597644934442.png

三丶块元素居中

1.水平居中

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
    
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
          
          /*水平居中*/
          margin: 0 auto;
      }
        </style>
    
  • 效果

1597646200063.png

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
    
      }
      #son{
    
          background-color: #ffe500;
          height: 100px;
          
          /*水平居中*/
          margin: 0 auto;
          width: fit-content;
      }
        </style>
    
  • 效果

1597654422580.png

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

  • HTML

    <div id="dad">
        <span id="son">子元素</span>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
          /*水平居中*/
          text-align: center;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
          
          
          display: inline-block;
      }
        </style>
    
  • 效果

1597646648052.png

四丶position定位居中法

1.水平居中

子绝父相left+margin-left定位居中

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

定宽度:设置绝对子元素的 ==margin-left:==-元素宽度的一半px;

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
          position: absolute;
          left: 50%;
          margin: 0 0 0 -50px;
      }
        </style>
    
  • 效果

1597648150275.png

子绝父相left+transform定位居中

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
      }
        </style>
    
  • 效果

1597648150275.png

2.垂直居中

子绝父相top+margin-top定位居中

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

定高度:设置绝对子元素的 ==margin-top:== -元素高度的一半px;

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
          position: absolute;
          top: 50%;
          margin-top:-50px;
      }
        </style>
    
  • 效果

1597648936473.png

子绝父相top+transform定位居中

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
      }
        </style>
    
  • 效果

1597648936473.png

3.水平垂直居中

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
           top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
      }
        </style>
    
  • 效果

1597649910034.png

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -50px;
            margin-top: -50px;
      }
        </style>
    
  • 效果

1597649910034.png

未知元素的高度和宽度:设置父元素为相对定位,给子元素设置绝对定位,==left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%);==

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          position: relative;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
      }
        </style>
    
  • 效果

1597649910034.png

五丶使用flexbox布局实现居中

1.水平居中(宽度定不定都可以)

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          display: flex;
          justify-content: center;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
          
      }
        </style>
    
  • 效果

1597650784327.png

2.垂直居中(高度定不定都可以)

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          display: flex;
          align-items: center;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
      }
        </style>
    
    
  • 效果

1597651125156.png

3.水平垂直居中

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

  • HTML

    <div id="dad">
    <div id="son">子元素</div>
    </div>
    
  • CSS

        <style>
      #dad{
          margin: 0 auto;
          background-color: #00ffdd;
          width: 500px;
          height: 500px;
    
          display: flex;
          justify-content: center;
          align-items: center;
      }
      #son{
    
          background-color: #ffe500;
          width: 100px;
          height: 100px;
    
      }
        </style>
    
  • 效果

1597651340027.png

六丶元素(空标签)水平垂直居中

  • HTML

    <div class="floater"></div>
    <div class="box">
        水平垂直居中元素
    </div>
    
    
  • CSS

        <style>
            html,
            body {
                height: 100%;
            }
            .box {
                position: relative;
                /*清除浮动*/
                clear:both;
                height: 100px;
                width: 100px;
                margin: 0 auto;
                background: #ffe500;
            }
            .floater {
                float:left;
                /*相对于父元素高度的50%*/
                height:50%;
                /*居中元素高度的一半*/
                margin-bottom: -50px;
                width: 100%;
                background-color: rebeccapurple;
            }
        </style>
    
  • 效果

1597653699200.png

七丶 CSS3的calc方法水平垂直居中

盒模型的组成

盒模型

什么是calc()

calc()属于CSS3,用于动态计算长度值,可以用在任何一个需要的地方。有了calc(),你可以通过计算来决定一个对象的大小和形状。还可以在一个calc()内部嵌套另一个calc()。妈妈再也不担心我水平垂直居中不了了。

  • HTML

    <div id="dad">
        <div id="son">HTML5</div>
    </div>
    
  • CSS

        <style>
            #dad {
                width: 400px;
                height: 400px;
                background-color: #00ffdd;
            }
            #son {
                /*利用CSS3的calc() ,它的用法类似于函数,能够给元素设置动态的值:*/
                /*(父级的宽度 - 自身的宽度)的一半当做padding的值*/
                padding: -webkit-calc((100% - 100px) / 2);
                padding: -moz-calc((100% - 100px) / 2);
                padding: -ms-calc((100% - 100px) / 2);
                padding: calc((100% - 100px) / 2);/*这里算出来的就是子元素的padding值,其他三个是为了考虑其他浏览器兼容性*/
                width: 100px;
                height: 100px;
                background-color: #ffe500;
                color: #000000;
                /*背景只显示内容区域*/
                background-clip: content-box;
            }
        </style>
    
  • 效果


    1597655409832.png

calc()支持程度

calc支持程度
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342