css style control text overflow to display ellipsis

Single line of text overflows with ellipsis

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

Multi-line text overflows with ellipsis

display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;

Guess you like

Origin blog.csdn.net/weixin_43956521/article/details/110930186