文本超出用...代替(兼容)
Posted 大厨的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本超出用...代替(兼容)相关的知识,希望对你有一定的参考价值。
div{ width: 100px; height: 40px; line-height: 20px; border:solid 1px black; position: relative; // ...这里添加relative /*多行文本省略*/ overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2!important; -moz-box-orient: vertical; } // 后面自动补上点 div:after { background: linear-gradient(to right, rgba(255, 255, 255, 0), #FFFFFF 50%) repeat scroll 0 0 rgba(0, 0, 0, 0); bottom: 0; content: "..."; padding: 0 5px 1px 30px; position: absolute; right: 0; }
以上是关于文本超出用...代替(兼容)的主要内容,如果未能解决你的问题,请参考以下文章