美文网首页
css实现多行文字垂直居中

css实现多行文字垂直居中

作者: shibin | 来源:发表于2017-11-12 17:39 被阅读0次
  • 使用table布局或flex布局是文字垂直居中
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style media="screen">
    .box {
      width: 200px;
      display: table-cell;
      background: red;
      height: 200px;
      word-wrap: break-word;
      vertical-align: middle;
    }

    .box>div {
      line-height: 20px;
      word-break: break-all;
    }

    .flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100px;
      background: blue;
    }

    .flex-1 {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
    }
  </style>
</head>

<body>
  <!-- table布局垂直居中 -->
  <div class="box">
    <div>我是多行文字,我要垂直居中1212212111212121212121sdsdsd</div>
  </div>
  <!-- flex布局垂直居中 -->
  <div class="flex">
    <div>1231231</div>
    <div class="flex-1">我是多行文字,我要垂直居中1212212111212121212121sdsdsd</div>
  </div>
</body>

</html>

相关文章

网友评论

      本文标题:css实现多行文字垂直居中

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