I use this code for my select box:
<select>
  <option>AB</option>
  <option>CD</option>
  <option>DW</option>
</select>
And CSS:
select, option {
  font: bold 22px tahoma;
}
Font family and weight work for select, but not work for option.
How I can set font family to OPTIONS?
