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

css文本超出省略

时间:2020-07-10 12:55:11      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:gre   ati   class   span   width   超出   lamp   for   web   

一、单行

<div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div>
.div {
  background-color: green;
  width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

 

二、多行

  1、私有属性

<div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div>
.div {
  background-color: green;
  width: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

 

  2、:before和:after

<div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div>
.div {
  background-color: green;
  width: 100px;
  height: 63px;
  position: relative;
  overflow: hidden;
  text-align: justify;
}

.div:before {
  content: "...";
  background-color: green;
  width: 18px;
  height: 21px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.div:after {
  content: "";
  background-color: green;
  width: 18px;
  height: 63px;
  position: absolute;
  right: 0;
}

 

css文本超出省略

标签:gre   ati   class   span   width   超出   lamp   for   web   

原文地址:https://www.cnblogs.com/linding/p/13278656.html

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