JSFiddle - React, Tailwind, and code Playground

by Dhanck

HTML

<ul>
  <li style="list-style-type:disc; color:red">Coffee</li>
  <li style="list-style-type:square; color:blue" class="size25">Tea</li>
  <li style="list-style-type:none; color:green">Milk</li>
  <li style="list-style-type:circle; font-size: 25px">Nesquik</li>
</ul>

CSS

.size25{
  font-size: 25px;
}