I have a span. I need both the below mentioned styles. But along with display: inline-flex, text-overflow: ellipsis is not working.
.ed-span{
   display: inline-flex!important;
   text-overflow: ellipsis;
 }
when I change inline-flex to inline-block it is working. But I need inline-flex.
How can i make it work?
Please help, Thanks.