How do I change the font-size of an element within ?

One solution could be to wrap the options inside optgroup:

optgroup { font-size:40px; }
<select>
  <optgroup>
    <option selected="selected" class="service-small">Service area?</option>
    <option class="service-small">Volunteering</option>
    <option class="service-small">Partnership &amp; Support</option>
    <option class="service-small">Business Services</option>
  </optgroup>
</select>

Leave a Comment