单行、多行文字溢出 显示省略号

//单行溢出省略号
.box {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
//多行溢出省略号
.box {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;//几行后显示省略号
}
原文地址:https://www.cnblogs.com/jinglover/p/5911588.html