显示一行文字,多余的文字省略
.title { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all; }
显示两行文字,多余的文字省略
.title { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2; -moz-box-orient: vertical; word-wrap: break-word; word-break: break-all; white-space: normal; }