Replace the text with an ellipsis

Replace text with ellipsis

  • Single line text ellipsis processing.
/*超过范围进行隐藏不显示*/
overflow: hidden; 
/*文本溢出, 使用省略号 */
text-overflow:ellipsis;
/*连续的空白符会被合并,但文本内的换行无效*/ 
white-space: nowrap;
  • Multi-line text ellipsis processing.
/*超过范围进行隐藏不显示*/
overflow : hidden;
/*文本溢出, 使用省略号 */
text-overflow: ellipsis;
/* 以webkit盒子展示, 比较适用于webkit内核和移动端*/
display: -webkit-box;
/*限制块容器显示的文本行数, 按照你的需求设置*/
-webkit-line-clamp: 2;
/*盒子的方向, 垂直、水平等*/
-webkit-box-orient: vertical;
/*文字换行, 可以在单词内断*/
word-wrap: break-word;

Guess you like

Origin blog.csdn.net/weixin_40944062/article/details/112799692