码迷,mamicode.com
首页 > 其他好文 > 详细

多行文字居中

时间:2017-03-18 01:00:48      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:text   html   idt   top   ott   meta   border   viewport   body   

 

对于多行文字的居中,用一句话概括就是:把包裹在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>

效果如下:

技术分享

多行文字居中

标签:text   html   idt   top   ott   meta   border   viewport   body   

原文地址:http://www.cnblogs.com/233liyj/p/6569283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!