Milligram - Lists

HTML
<!-- Unordered list --> <ul> <li>Unordered list item 1</li> <li>Unordered list item 2</li> </ul> <!-- Ordered list --> <ol> <li>Ordered list item 1</li> <li>Ordered list item 2</li> </ol> <!-- Description list --> <dl> <dt>Description list item 1</dt> <dd>Description list item 1.1</dd> </dl> <!-- Easily change any <dl>, <ul> or an <ol> to get clear lists, number lists or outline circles. -->
CSS
JAVASCRIPT
/* The List is a very versatile and common way to display items. Milligram has three types of lists: The unordered list use `<ul>` element will be marked with a outline circles, the ordered list use `<ol>` element and your items will be marked with numbers, the description list use `<dl>` element and your items will not be marking, only spacings. https://github.com/milligram/milligram https://milligram.github.io */
Expand for more options Login