JSFiddle - React, Tailwind, and code Playground

by Erik Woods

HTML

<select>
  <option>Select a character...</option>
  <optgroup label="characters">
    <option>tina</option>
    <option>tommy</option>
    <option>bob</option>
    <option>linda</option>
  </optgroup>
</select>

CSS

optgroup option {
    padding: 0;
}