📜  如何使用 css 代码示例截断多行文本

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

代码示例1
.yourclassselector {

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* Change this to any number of line to truncate.*/
-webkit-box-orient: vertical;
}