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优化

相关文章
相关标签/搜索