I am currently facing an issue with a list created using Bootstrap 4, where some items contain long text that is causing problems on small screen devices. I have attempted to use white-space:nowrap
and the text-nowrap
class, but neither solution has fixed the problem.
Is there another way to resolve this issue?
Here is my code snippet:
<ul class='navbar-nav'>
<li class='nav-item'>
<a href='#' class='text-nowrap'>long textt...........</a>
</li>
</ul>