网页如何实现移动端超长文字中间用省略号替代显示?

移动端页面,因为要做适配,所以并不固定显示多少个文字,如果文字超长,如何保留头尾,中间用省略号替代,而且总长度刚好撑满屏幕宽度?

阅读 2.7k
1 个回答

单行

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

多行:

display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
因使用了WebKit的CSS扩展属性,该方法适用于WebKit浏览器及移动端;
position: relative; line-height: 20px; max-height: 40px;overflow: hidden;}
p::after{content: "..."; position: absolute; bottom: 0; right: 0; padding-left: 40px;
background: -webkit-linear-gradient(left, transparent, #fff 55%);
background: -o-linear-gradient(right, transparent, #fff 55%);
background: -moz-linear-gradient(right, transparent, #fff 55%);
background: linear-gradient(to right, transparent, #fff 55%);
该方法适用范围广,但文字未超出行的情况下也会出现省略号,可结合js优化该方法。
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题