vue webpack打包 -webkit-box-orient 失效


一行省略

overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;

超出兩行省略

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
 -webkit-line-clamp: 2;
-webkit-box-orient: vertical;

在使用webpack打包時,由於webpack會添加上前綴兼容,可能某些css屬性失效。

解決方法:添加注釋

注意:在css sass stylue中注釋略有不同 

//在scss中
         /*! autoprefixer: off */
         -webkit-box-orient: vertical;
          /* autoprefixer: on */

 

/* autoprefixer: off */
  -webkit-box-orient: vertical;
 /* autoprefixer: on */

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM