css多行文字实现省略结尾

例子


.text{
    display: -webkit-box;
    height: 2.6rem;
    line-height: 1.3rem;
    color: #333;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

猜你喜欢

转载自blog.csdn.net/goldenlegs/article/details/81016691