css 单行 和多行文本显示

 .text-ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
 
 
 .multiline-ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            white-space: normal !important;
            word-wrap: break-word;
        }
posted @ 2022-06-02 17:32  13522679763-任国强  阅读(141)  评论(0编辑  收藏  举报