CSS总结:div中的内容垂直居中的几种方法

目录

  1. 行高(line-height)法
  2. 内边距(padding)法
  3. 模拟表格法
  4. CSS3的transform来实现
  5. css3的box方法实现水平垂直居中
  6. flex布局(2018/04/17补充)

一、行高(line-height)法

如果要垂直居中的只有一行或几个文字,那它的制作最为简单,只要让文字的行高和容器的高度相同即可,比如:

p { height:30px; line-height:30px; width:100px; overflow:hidden; }

这段代码可以达到让文字在段落中垂直居中的效果。

效果:

垂直居中

效果代码:
<div style="background-color: #e5e5e5;height:100">
    <p style="background-color: red;height:30px; line-height:30px; width:100px; overflow:hidden;">看看</p>
</div>

二、内边距(padding)法

另一种方法和行高法很相似,它同样适合一行或几行文字垂直居中,原理就是利用padding将内容垂直居中,比如:

p { padding:20px 0; }

这段代码的效果和line-height法差不多。

效果:

垂直居中

效果代码:

<div style="background-color: #e5e5e5;height:100">
    <p style="background-color: red;padding:20px 0;">垂直居中</p>
</div>

三、模拟表格法

将容器设置为display:table,然后将子元素也就是要垂直居中显示的元素设置为display:table-cell,然后加上vertical-align:middle来实现。

html结构如下:

<div id="wrapper">
    <div id="cell">
        <p>垂直居中效果</p>
        <p>垂直居中效果</p>
    </div>
</div>

css代码:

#wrapper {display:table;width:300px;height:300px;background:#000;margin:0 auto;color:red;}
#cell{display:table-cell; vertical-align:middle;}

效果:

垂直居中效果

垂直居中效果

效果代码:

<div style="display:table;width:300px;height:300px;background:#000;margin:0 auto;color:red;">
    <div style="display:table-cell; vertical-align:middle;">
        <p>垂直居中效果</p>
        <p>垂直居中效果</p>
    </div>
</div>

四、CSS3的transform来实现

css代码:

.center-vertical{
  position: relative;
  top:50%;
  transform:translateY(-50%);
}
.center-horizontal{
  position: relative;
  left:50%;
  transform:translateX(-50%); 
}

效果:

垂直居中效果

垂直居中效果

效果代码:

<div id="" style="width: 300px;
            height: 300px;
            background: #000;
            color: red;">
    <div class="" style="position: relative;
            top: 50%;
            transform: translateY(-50%);">
        <p class="">垂直居中效果</p>
        <p class="">垂直居中效果</p>
    </div>
</div>

五:css3的box方法实现水平垂直居中

html代码:

<div class="center">
  <div class="text">
    <p>我是多行文字</p>
    <p>我是多行文字</p>
    <p>我是多行文字</p>
  </div>
</div>

css代码:

.center {
  width: 300px;
  height: 200px;
  padding: 10px;
  border: 1px solid #ccc;
  background:#000;
  color:#fff;
  margin: 20px auto;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-pack: center;
  -moz-box-align: center;
  
  display: -o-box;
  -o-box-orient: horizontal;
  -o-box-pack: center;
  -o-box-align: center;
  
  display: -ms-box;
  -ms-box-orient: horizontal;
  -ms-box-pack: center;
  -ms-box-align: center;
  
  display: box;
  box-orient: horizontal;
  box-pack: center;
  box-align: center;
}

效果:

我是多行垂直居中文字

我是多行垂直居中文字

我是多行垂直居中文字

六:flex布局

html代码:

<div class="flex">
    <div>
       <p>多行文字</p>
       <p>多行文字</p>
    </div>
</div>

css代码:

.flex{
    /*flex 布局*/
    display: flex;
    /*实现垂直居中*/
    align-items: center;
    /*实现水平居中*/
    justify-content: center;
    text-align: justify;
    width:200px;
    height:200px;
    background: #000;
    margin:0 auto;
    color:#fff;
}

效果:

多行文字

多行文字

# css   html   前端   配置  

评论

企鹅群:39438021

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×