JSFiddle - React, Tailwind, and code Playground

by GaryC123

HTML

<ol type="a">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

<ol type="A">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

CSS

ol[type^="a"] li
{
   color: red;
}

ol[type^="A"] li
{
   color: green;
}