Angular List Group Basic example

The default list group is an unordered list with items and the proper CSS classes. Build upon it with the options that follow, or with your CSS as required.

    @for (item of sampleList; track item) {
  • {{ item }}
  • }
Angular List Group Active items

Add active boolean property to a cListGroupItem to show the current active selection.

    @for (item of sampleList; track item; let first = $first) {
  • {{ item }}
  • }
Angular List Group Disabled items

Add disabled boolean property to a cListGroupItem to make it appear disabled.

@for (item of sampleList; track item; let first = $first) { }
Angular List Group Links and buttons

Use <a>s or <button>s to create actionable list group items with hover, disabled, and active states with a or button. We separate these pseudo-classes to ensure list groups made of non-interactive elements (like <li> or <div>) don't provide a click or tap affordance.

@for (item of sampleList; track item; let first = $first, last = $last) { {{ item }} }
Angular List Group Flush

Add flush boolean property to remove some borders and rounded corners to render list group items edge-to-edge in a parent container (e.g., cards).

    @for (item of sampleList; track item) {
  • {{ item }}
  • }
Angular List Group Horizontal

Add layout="horizontal" to change the layout of list group items from vertical to horizontal across all breakpoints.
Alternatively, choose a responsive variant [horizontal]="sm | md | lg | xl | xxl" to make a list group horizontal starting at that breakpoint's min-width.
Currently horizontal list groups cannot be combined with flush list groups.

@for (breakpoint of breakpoints; track breakpoint) {
  • Cras justo odio
  • Dapibus ac facilisis in
  • Morbi leo risus
}
Angular List Group Contextual classes

Use contextual classes to style list items with a stateful background and color.

    @for (color of colors; track color) {
  • A simple {{ color }} list group item
  • }

Contextual classes also work with <a> or <button>. Note the addition of the hover styles here not present in the previous example. Also supported is the active state; apply it to indicate an active selection on a contextual list group item.

@for (color of colors; track color) { A simple {{ color }} list group item }
Angular List Group With badges

Add badges to any list group item to show unread counts, activity, and more.

@for (item of sampleList; track item; let i = $index, last = $last) { }
Angular List Group Custom content

Add nearly any HTML within, even for linked list groups like the one below, with the help of flexbox utilities.

Angular List Group Checkboxes and radios

Place CoreUI's checkboxes and radios within list group items and customize as needed.