3 lines 1

ellipse not shown in 3 lines limit

by Jane Chen

HTML

<span class="fileName" >long name file to display long name file to displayddddddssdd moreggggg lines more lines more more more lines</span>

SCSS

.fileName {
   
  
  -webkit-font-smoothing: antialiased;
  -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;

  font-size: 17px;
  line-height:  1.4;
  max-height: 71.4px;
  
  overflow:hidden;
  display: -webkit-box;
  width: 175px;

}