div内容垂直居中的方法

Posted catyxiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div内容垂直居中的方法相关的知识,希望对你有一定的参考价值。

html

<div class="flex">
    <div>
      <p>鲨鱼大王</p>
      <p>鲨鱼大王</p>
    </div>
</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;
}

 

  

 

以上是关于div内容垂直居中的方法的主要内容,如果未能解决你的问题,请参考以下文章

实现div内容水平垂直居中

如何让div中的内容垂直居中

div内容垂直居中的方法

DIV实现垂直居中的几种方法

前端面试CSS系列——DIV垂直水平居中

如何让div中的内容垂直居中