Coffee Luv Bug Design System
Unordered List
In our application we only using unordered list.
Here is the example of unordered list.
- Example1
- Example2
- Example3
Below the Html code of unordered list.
<ul class="a">
<li>Example1</li>
<li>Example2</li>
<li>Example3</li>
</ul>
Below the Css code of unordered list.
ul.a
{
list-style-type: disc;
}