CSS - overflowed ellipsis issue on firefox

0 votes
128 views
added Jan 12, 2022 in CSS by lcjr First Warrant Officer (11,790 points)
.text-overflow {
  white-space: nowrap;  
  vertical-align:top;
  overflow: hidden;
  text-overflow: ellipsis;
  /*add height to fix them*/
  height: 120px;
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...