With Bootstrap 2.3.2 you could use the nav-header
class as follows to create a grouped list.
<ul class="nav nav-pills nav-stacked">
<li class="nav-header">Group A</li>
<li><a href="/items/1">Item 1</a></li>
<li><a href="/items/2">Item 2</a></li>
<li><a href="/items/3">Item 3</a></li>
<li class="nav-header">Group B</li>
<li><a href="/items/4">Item 4</a></li>
<li><a href="/items/5">Item 5</a></li>
</ul>
In Bootstrap 3.0.0 the nav-header
class seems to have been removed, though I can't find any mention of it being removed in the docs. I also can't find a replacement.
Is this kind of functionality still present? If so, what's the new way?