Bootstrap 5 docs suggest the following code for breadcrumbs:
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Library</a></li>
<li class="breadcrumb-item active" aria-current="page">Data</li>
</ol>
</nav>
In another section, they recommend using the .text-truncate class to auto truncate text with ellipsis, but unfortunately, this doesn't seem to work when applied to breadcrumbs. Is there a way to achieve one line breadcrumbs in BS5?