css 多行文本溢出

移动端使用,不考虑其他兼容

            p{
                text-overflow: -o-ellipsis-lastline;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;   
                line-clamp: 2;  //行数,超出2行溢出显示省略号....
                -webkit-box-orient: vertical;
            }

效果:
在这里插入图片描述

你可能感兴趣的:(css)