The answer I found was to add the max-width property to the css:
I have used:
max-width: 120px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
This has given me what Hrushikesh seemed to be asking about.
The answer I found was to add the max-width property to the css:
I have used:
max-width: 120px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
This has given me what Hrushikesh seemed to be asking about.