In most cases you will also want to set overflow to hidden, otherwise the contents won't be clipped but an ellipsis will still be shown after the specified number of lines.-webkit-line-clamp 的主要作用你可以理解为把指定的那一行内容末尾转为 ... 显示,但并不是把内容裁切隐藏。因此,你需要增加一个 height 把超过的部分“隐藏”。
div { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }和高度无关
-webkit-line-clamp
的主要作用你可以理解为把指定的那一行内容末尾转为...
显示,但并不是把内容裁切隐藏。因此,你需要增加一个height
把超过的部分“隐藏”。