overflow: hidden; -ms-text-overflow: ellipsis; -o-text-overflow: ellipsis; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: .34rem; height: .68rem; margin-bottom: .26rem; text-align: left;省略号应该在文字后边显示,但是目前在文字中间显示
4 回答
self_potato
TA贡献53条经验 获得超27个赞
你没设宽,但是设了两行显示点点点 , 应该跟这个也有关系的
用jq也可以实现(兼容性好点,可以设置超出多少字符显示。。。)
$(function(){ $("#t").html().length>50?$("#t").html($("#t").html().substring(0,50)+"...."):$("#t").html() });
- 4 回答
- 1 关注
- 2658 浏览
添加回答
举报
0/150
提交
取消