List
By default, classless lists have bullets and margins. To remove the bullets
and margins, simply add a class of list
.
- I'm an unordered list.
- I have bullets and a margin.
- I'm an unordered list, with a class of
list
. - I don't have bullets or a margin.
<ul>
<li>I'm an unordered list.</li>
<li>I have bullets and a margin.</li>
</ul>
<ul class="list">
<li>I'm an unordered list, with a class of <code>list</code>.</li>
<li>I don't have bullets or a margin.</li>
</ul>