I have a very small issue for someone whose have command over css. I have the following markup:
<li>
<div>
<span>Some text</span>
<span>Some large amount of text</span>
</div>
<li>
And the css is :
li
{
width: 150px;
height: 100px;
}
Now i want to show ellipsis inside second span which contains large amount of text. How can i do this ?
Can anybody please help me ?