how to make the select box font size small in css

Solutions on MaxInterview for how to make the select box font size small in css by the best coders in the world

showing results for - "how to make the select box font size small in css"
Antonio
01 Jan 2021
1optgroup { font-size:40px; }
2<select>
3  <optgroup>
4    <option selected="selected" class="service-small">Service area?</option>
5    <option class="service-small">Volunteering</option>
6    <option class="service-small">Partnership & Support</option>
7    <option class="service-small">Business Services</option>
8  </optgroup>
9</select>