.pro-ellipsis-text {
    position: relative;
    line-height: normal;
    &.css-impl {
        white-space: nowrap;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    &.native-impl {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        -webkit-box-orient: vertical;
    }

    .vue-ellipsis-native-html {
        & > div {
            display: inline;
        }
    }
}