Categories
css

Limit text lines

line-clamp

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  text-overflow: ellipsis;
  overflow: hidden;

  & > * {
    // prevent dots on top of Umlaut to be hidden
    line-height: 1.3;
  }
}

line-clamp

Leave a comment