码迷,mamicode.com
首页 > Web开发 > 详细

CSS特效(7)——单行居中,多行居左,超过两行用省略号

时间:2018-09-07 16:03:18      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:har   over   box   1.0   text   多行   charset   device   lang   

单行居中,多行居左,超过两行用省略号

<!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>
    * {
      margin: 0;
      padding: 0;
    }

    h2 em {
      position: relative;
      font-style: normal;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .container {
      width: 320px;
      padding: 0 10px;
      margin: 10px auto;
      background: #ddd;
    }

    .container p {
      display: inline-block;
      text-align: center;
    }

    h2 {
      text-align: center;
      padding: 10px 0;
    }
  </style>
</head>

<body>
  <div class="container">
    <h2>
      <p>
        <em>我是单行标题居中</em>
      </p>
    </h2>
    <h2>
      <p>
        <em>我是两行标题两行标题两行标题居左</em>
      </p>
    </h2>
    <h2>
      <p>
        <em>我是超过两行的标题最后点号省略我是超过两行的标题最后点号省略我是超过两行的标题最后点号省略省略省略</em>
      </p>
    </h2>
  </div>
</body>

</html>

CSS特效(7)——单行居中,多行居左,超过两行用省略号

标签:har   over   box   1.0   text   多行   charset   device   lang   

原文地址:https://www.cnblogs.com/janas-luo/p/9604834.html

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