CSS List Style Type

  • Post category:CSS

Get the code of CSS List Style Type and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<ul class="a">
  <li>Tea</li>
  <li>Coffee</li>
  <li>Coca cola</li>
</ul>
<ul class="b">
  <li>Tea</li>
  <li>Coffee</li>
  <li>Coca cola</li>
</ul>
<ul class="c">
  <li>Tea</li>
  <li>Coffee</li>
  <li>Coca cola</li>
</ul>
.a {
  list-style-type: upper-roman;
}
.b {
  list-style-type: upper-alpha;
}
.c {
  list-style-type: decimal;
}