# List formatting

Shortcuts for the list formatting.

**Style**
- **No style:** list-unstyled
- **No style, no frames (margin & padding):** list-unstyled-clear
- **Disc:** list-disc
- **Square:** list-square
- **Decimal:** list-decimal
- **Dash:** list-dash

**Position**
- **Inside:** list-inside
- **Outside:** list-outside

## Examples
````Html
<ul class="list-square list-outside">
 <li>
  Some content
 </li>
</ul>
````
