0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/docs/components/list-group.md
Mark Otto cbda7e3862 Revamp list group items built with anchors and buttons
- Make it an explicit class instead of qualifying with elements (.list-group-item-action)
- Rearrange the entire file for more straightforward flow
- Fix text-decoration bug as a result of the reorder
- Switch from h4's to h5's in docs
- Update docs to merge anchors and buttons sections; clearify usage guidelines there, too
- Nullify #17479 in the process
2016-02-06 19:50:00 -08:00

4.8 KiB

layout title group
docs List 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 %}

  • Cras justo odio
  • Dapibus ac facilisis in
  • Morbi leo risus
  • Porta ac consectetur ac
  • Vestibulum at eros
{% endexample %}

Labels

Add labels to any list group item to show unread counts, activity, etc.

{% example html %}

  • 14 Cras justo odio
  • 2 Dapibus ac facilisis in
  • 1 Morbi leo risus
{% endexample %}

Disabled items

Add .disabled to a .list-group-item to gray it out to appear disabled.

{% example html %}

{% 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 <a>s and <button>s, as well as the hover and focus states.

Be sure to not use the standard .btn classes here.

{% example html %}

{% endexample %}

{% example html %}

Cras justo odio Dapibus ac facilisis in Morbi leo risus Porta ac consectetur ac Vestibulum at eros
{% endexample %}

Contextual classes

Use contextual classes to style list items, default or linked. Also includes .active state.

{% example html %}

{% endexample %}

Custom content

Add nearly any HTML within, even for linked list groups like the one below.

{% example html %}

{% endexample %}