Trung BìnhCSS iconCSS

Text truncation (ellipsis) thực hiện thế nào?

Hai pattern tùy theo số dòng:

Single line:

css
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

Multi-line (ví dụ 3 dòng):

css
.clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

Mặc dù mang prefix -webkit-, line-clamp đã được hỗ trợ rộng rãi trên tất cả browsers hiện đại (Chrome 6+, Firefox 68+, Safari 5+).

Xem toàn bộ CSS cùng filter theo level & chủ đề con.

Mở danh sách CSS