SWS-5007 / My-Experience

13 stars 0 forks source link

How to cut off the long text ? #18

Open SWS-5007 opened 1 year ago

SWS-5007 commented 1 year ago

Hi,

Here is exact solution for this issue. https://stackoverflow.com/questions/15909489/text-overflow-ellipsis-on-two-lines

h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

Thanks for your great feedback.