单行、多行 超过显示省略号
// 单行溢出隐藏
.storeIntro{ width: 400rpx; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
// 多行溢出隐藏
.storeIntro { width: 400rpx; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
word-break: break-all; // 若为全英文,可能会出现英文不换行的问题
浙公网安备 33010602011771号