有时,我们需要对某段文字进行截断处理,多余的字符显示…
1 | <div class="words">For a long time it seemed to me that life was about to begin , real life. But, there was always some obsacle in the way, something to be gotten through first, some unfinnished business, time still to be served or a debt to be paid. Then life would begin.</div> |
单行
代码
1 | .words { |
效果
For a long time it seemed to me that life was about to begin , real life. But, there was always some obsacle in the way, something to be gotten through first, some unfinnished business, time still to be served or a debt to be paid. Then life would begin.
多行
-webkit 代码
1 | // webkit |
-webkit 效果
For a long time it seemed to me that life was about to begin , real life. But, there was always some obsacle in the way, something to be gotten through first, some unfinnished business, time still to be served or a debt to be paid. Then life would begin.
兼容代码
1 | // 兼容其它内核 padding需要根据实际情况计算 |
兼容代码效果
For a long time it seemed to me that life was about to begin , real life. But, there was always some obsacle in the way, something to be gotten through first, some unfinnished business, time still to be served or a debt to be paid. Then life would begin.
插件
也有一些通过js实现的截断插件,例如 jQuery.dotdotdot,Clamp.js