使用CSS将文本长度限制为n行在iOS上不起作用,仍然显示所有行,下面是我的代码:
overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
f4t66c6m1#
验证码:
.container { height: 2em; /* or whatever height you want to set */ overflow: hidden; text-overflow: ellipsis; }
1条答案
按热度按时间f4t66c6m1#
验证码: