🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ 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; ~~~