css 超过两行换行

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
/* autoprefixer: off */
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;

  

如果有使用postcss或者autoprefixer插件 一定不要漏掉这段代码 

/* autoprefixer: off */
原文地址:https://www.cnblogs.com/MainActivity/p/15136923.html