react----不生效

溢出顯示省略號的場景,可是沒有生效,通過查閱,獲得如下解決方法,供參考~css

.初次寫法:git

item-title{
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
}github

發現-webkit-box-orient:vertical;並未設置成功,據大神網友提供解決方案,優化代碼以下:web

.item-title{
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
/* autoprefixer: off */
-webkit-box-orient:vertical;
/* autoprefixer: on */
-webkit-line-clamp:2;
}post

總結:在-webkit-box-orient:vertical;時,添加如上註釋進行包裹!

參考地址:https://github.com/postcss/autoprefixer/issues/776優化

相關文章
相關標籤/搜索