📜  line cap css 代码示例

📅  最后修改于: 2022-03-11 14:47:37.187000             🧑  作者: Mango

代码示例1
/* Limit text length to n lines*/
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* number of lines to show */
-webkit-box-orient: vertical;