JSFiddle - React, Tailwind, and code Playground

by kazu69

HTML

<progress max="100" value="80"></progress>

CSS

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
   appearance: none;
  background-color: #c00;
  width: 250px;
  height: 20px;
}