多行文字居中

Posted 李艳军

tags:

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

 

对于多行文字的居中,用一句话概括就是:把包裹在inline-block 中的文字 放到 line-height为容器高度的 容器中,代码如下:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
  #container{
      width:300px;
      height:300px;
      border:solid 1px grey;
      line-height:300px;
      text-align:center;
  }
  .lineblock{
      display:inline-block;
      line-height:1.4em;
  }
  </style>
</head>
<body>
  <div id="container">
    <div class="lineblock">第一行</br>第二行</div>
  </div>
</body>
</html>

效果如下:

QQ截图20170318002036

以上是关于多行文字居中的主要内容,如果未能解决你的问题,请参考以下文章

多行文字居中

多行文字或者单行文字的垂直居中解决方案

转 图片多行文字的水平垂直居中

lineheight使图片多行文字垂直居中

lineheight使图片多行文字垂直居中

微信小程序 button内多行文字垂直居中、短信倒计时