-webkit-box-orient: vertical; 在webpack上失效

-webkit-box-orient: vertical;在webpack上失效,可以使用以下方式解决

  .ifc-header-content-comment {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* autoprefixer: off */
        -webkit-box-orient: vertical; 
        /* autoprefixer: on */
        height: 50px;
        line-height: 25px;
    }

或者是

.ifc-header-content-comment {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* autoprefixer: ignore next */
        -webkit-box-orient: vertical; 
        height: 50px;
        line-height: 25px;
    }
 
 
 

 

posted @ 2019-02-27 09:46  第一神坑  Views(777)  Comments(0)    收藏  举报