美文网首页
垂直居中方法

垂直居中方法

作者: 夏花_dd | 来源:发表于2020-08-14 10:34 被阅读0次

    1.使用display:table和display:table-cell

    <div class="parent">
      <p class="son">我要占C位!!! </p>
    </div>
    
    .parent {
      display: table;
      width: 300px;
      height: 300px;
      text-align: center;
    }
    .son  {
      display: table-cell;
      height: 200px;
      background-color: yellow;
      vertical-align: middle;
    }
    ···
    
    

    相关文章

      网友评论

          本文标题:垂直居中方法

          本文链接:https://www.haomeiwen.com/subject/uzbfdktx.html