I have this:
<ul>
<li>
<p>Some long text here</p>
</li>
</ul>
is there a way to get the p text to be restricted to a single line, and have it ellipsize if it's going to be wider than the parent container?
Thanks
I have this:
<ul>
<li>
<p>Some long text here</p>
</li>
</ul>
is there a way to get the p text to be restricted to a single line, and have it ellipsize if it's going to be wider than the parent container?
Thanks
Use this CSS class for your paragraph.
.single-line{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: inherit;
}