📜  css 限制行文本 - CSS 代码示例

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

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