做网站|网站建设,就上易助科技网

前端技术文档及相关资料下载

关于前端html、css、js等技术上的各种疑难棘手问题的解决方案探讨及相关资料下载!

文本溢出处理text—overflow:ellipsis详解
来源:易助科技浏览量:3收藏

text-overflow:ellipsis用法

1.  单行文本溢出:

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


2.  多行文本溢出

overflow: hidden;
text-overflow: ellipsis;
display:-webkit-box;
-webkit-line-clamp: 3; /*第几行裁剪*/  
-webkit-box-orient: vertical;


3.  IE兼容 使用dotdotdot.js插件(附件下载)

$('div').dotdtdot();