文字不换行缩略ellipsis

.ellipsis {

    text-overflow: ellipsis;

    white-space: nowrap;

    overflow: hidden;

}

.ellipsis-two {

    overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

}

你可能感兴趣的:(文字不换行缩略ellipsis)