Adding ellipsis (three dots) for long text in html div using CSS
width: 250px;/*should be specified*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
All the following are required for the design.The text is now in a single straight line.
All the following are required for the design.The text is now in a single straight line.