当前位置:网站首页>One or more lines of text overflow, ellipsis instead

One or more lines of text overflow, ellipsis instead

2022-06-23 05:10:00 richest_ qi

Single line text overflow , Ellipsis instead

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

Multi line text overflow , Ellipsis instead

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;  /* Set alignment mode */
-webkit-line-clamp: 2; /* Set the number of lines */

Related links

【css】 When the text is too long, an ellipsis is used instead of
【 Wechat applet 】 Expand and collapse the text
Implementation of slider view

原网站

版权声明
本文为[richest_ qi]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/174/202206230128069450.html