Adding ellipsis to long text
When you have some long division and you don’t want to wrap text or extend size of div, But instead you want to use add few `…` at end of text using CSS
.wrapped{
overflow:hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 300px;
}
Example :
Text without text-overflow :Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id sem vehicula, faucibus leo id.
Text with text-overflow : Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id sem vehicula, faucibus leo id.
Like this:
Like Loading...
Related
Madhurendra
Madhurendra is a passionate cybersecurity enthusiast with a strong interest in protecting the digital world from cyber threats. He has always been fascinated by technology and how it can be leveraged to improve our lives, but he also recognizes the potential dangers that come with increased connectivity and dependence on technology.
Recent Comments