css 省略号的写法

单行省略号

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
500px;

多行省略号

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
原文地址:https://www.cnblogs.com/sspeng/p/9609921.html