一路繁花似锦绣前程
失败的越多,成功才越有价值

导航

 

一、单行

<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;
}

 

posted on 2020-07-10 12:47  一路繁花似锦绣前程  阅读(226)  评论(0编辑  收藏  举报