css 段落太长省略显示

多行的省略方式

.text{
    font-size: 0.3rem;
    color: #999;
    margin-top: 0.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

单行的省略方式

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

你可能感兴趣的:(css 段落太长省略显示)