Skip to content

Latest commit

 

History

History
 
 

ellipsis

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

单行文字

// 注意宽度是必须的
.article-container {
  width: 500px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

多行文字

.article-container {
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; //需要显示的行数
  overflow: hidden;
  text-overflow: ellipsis;
}