πŸ“ CSS Line-Clamp Generator

πŸ‘οΈ Live Preview

Preview
πŸ“„ Text Truncation Preview
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of HTML documents. Line-Clamp is a powerful CSS property...
Lines: 3 Font: 14px Line-H: 1.6 Max Height: 67px

πŸ“Š Line Count Comparison

πŸ“‹ CSS Code
.text-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
}