css实现多行文本设置省略号

可以修改line-clamp的属性值

 overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;

 

posted @ 2021-07-06 10:56  she_will  阅读(156)  评论(0编辑  收藏  举报