2023年6月20日发(作者:)
CSS设置只显⽰两⾏⽂字显⽰⼀⾏⽂字,多余的⽂字省略
.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;
}
2023年6月20日发(作者:)
CSS设置只显⽰两⾏⽂字显⽰⼀⾏⽂字,多余的⽂字省略
.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;
}
发布评论