在单行文本的情况下,可以用来使超出范围的文本用省略号隐藏:
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
但是当遇到多行的文本,固定了高度的情况下,这又该如何写呢?
像下面这个文本一样,结尾是 "..."
+------------------------------------------+ | Over the past day or so the vituperation | | against the iOS 6 Maps app, AKA the Maps | | app that makes you wish you were ... | +------------------------------------------+
Webkit支持一个名为-webkit-line-clamp的属性,他其实是一个WebKit-Specific Unsupported Property
http://jsfiddle.net/Cople/maB8f/
Demo: http://jsfiddle.net/Cople/ash5v/
参考自:http://c7sky.com/text-overflow-ellips...
简单地说,就是没有标准的解决方案,对于这类需求,最好在后端处理或者前端用脚本做截断
可以参考这个链接:
http://www.mobify.com/dev/multiline-e...
利用
overflow:hidden;
position:relative;
::after
实现,很巧妙。
这个可以https://github.com/joe223/Aut...