1

I've added CSS that truncate text to 3 lines, but after truncating, it repeats title after 3 dots.here is snapshot.

enter image description here

HTML

<p class="ccm-page-list-title">
<a href="/concrete5">Weight Plate Barbell Racking Calculator Imperial Units (Pounds) Weight Plate Barbell</a>

CSS

p.ccm-page-list-title {
  -webkit-line-clamp: 3;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
    height: 90px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  padding-top: 5px;
}

Link of Page

Suraj
  • 576
  • 2
  • 10
  • 37

1 Answers1

1

Add height property of paragraph in css

p.ccm-page-list-title {
  -webkit-line-clamp: 3;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;

  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  padding-top: 5px;
  
  height:48px;
}