--- layout: docs title: List group description: Learn about Bootstrap's list group component for rendering series of related content. group: components --- List groups are a flexible and powerful component for displaying not only simple lists of elements, but complex ones with custom content. ## Contents * Will be replaced with the ToC, excluding the "Contents" header {:toc} ## Basic example The most basic list group is simply an unordered list with list items, and the proper classes. Build upon it with the options that follow, or your own CSS as needed. {% example html %} {% endexample %} ## Badge Add badges to any list group item to show unread counts, activity, and more with the help of some utilities. Note the [`justify-content-between` utility class]({{ site.baseurl }}/layout/grid/#horizontal-alignment), the badge's placement, and the lack of a float and margin utilities on the badges. {% highlight html %} {% endhighlight %} ## Disabled items Add `.disabled` to a `.list-group-item` to gray it out to appear disabled. {% example html %}
Cras justo odio Dapibus ac facilisis in Morbi leo risus Porta ac consectetur ac Vestibulum at eros
{% endexample %} ## Anchors and buttons Use anchors or buttons to create actionable list group items with hover, disabled, and active states by adding `.list-group-item-action`. This separate class contains a few overrides to add compatibility for ``s and ` {% endexample %} ## Contextual classes Use contextual classes to style list items, default or linked. Also includes `.active` state. {% example html %}
Dapibus ac facilisis in Cras sit amet nibh libero Porta ac consectetur ac Vestibulum at eros
{% endexample %} {% capture callout-include %}{% include callout-warning-color-assistive-technologies.md %}{% endcapture %} {{ callout-include | markdownify }} ## Custom content Add nearly any HTML within, even for linked list groups like the one below. {% example html %}
List group item heading

Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.

List group item heading

Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.

List group item heading

Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.

{% endexample %}