mirror of
https://github.com/tachyons-css/tachyons.git
synced 2026-02-06 16:46:46 +00:00
701 B
701 B
export const meta = { title: 'Lists / Elements / Docs / TACHYONS', modules: ['tachyons-lists'], subNav: 'elements', editUrl: 'https://github.com/tachyons-css/tachyons/edit/master/docs/elements/lists.md' }
Lists
The list class serves as a reset for list-style-type to remove the default bullets.
It can be combined with pl0 to remove the default padding on lists.
Examples
Ul
<ul class="list pl0">
<li>Apples
<li>Oranges
<li>Banana
<li>Golf balls
</ul>
Ol
<ol class="list pl0">
<li>One
<li>Two
<li>Three
<li>Four
</ol>