Ellipsis text

0
I want to make this text into an ellipsis following this grid card, how do I do that?   this is the page structure
asked
1 answers
2

You can wrap your text in a container, give a css class for this container and aply a css:

.container { 

width: 200px; *(you define width)

white-space: nowrap;  

overflow: hidden; 

text-overflow: ellipsis;

}

answered