~~~
div{
border: 1px solid #333;
max-width: 400px;
display: block;
display: -webkit-box;
-webkit-line-clamp: 4;
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
~~~
在react中直接设置\-webkit-box-orient: vertical;是没有效果的,使用className设置是没有效果的
要使用style, style\={{ '-webkit-box-orient': 'vertical'}} 注意-webkit-box-orient要打引号
~~~
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: -webkit-box;
-webkit-line-clamp: 2;
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
~~~