前端在 CSS 中最多显示 2 行文字,可以使用 overflow: hidden 和 text-overflow: ellipsis 属性,并设置一个高度限制。
.box {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-height: 1.2em;
max-height: 2.4em;
}
这样,如果文本需要更多的行数才能完全显示,则会省略多余的文本并在末尾显示省略号(...)。