← Superkube / Documentation 1.5
Modules

List

This module has helpers for working with lists.

Inline #

Use the list-inline class to place the list items in one line.

  • Item 1
  • Item 2
  • Item 3
<ul class="list-inline">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

Unstyled #

Use the list-unstyled class to drop the left margin of the list and turn off the markers from the list.

  • Item 1
  • Item 2
  • Item 3
<ul class="list-unstyled">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>