css 文字超出省略号 ... 代替

单行文字

.name{
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                word-break: normal;
                font-size: 17px;
            }

多行文字

   .remd-text{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding: 6px 2px 0 6px;
        min-height: 30px;
        line-height: 1.2;
        font-size: 13px;
    }

猜你喜欢

转载自blog.csdn.net/weixin_41040445/article/details/114321278