I am facing issue in increasing the size of dropdown select option. I have applied styles but its working for background color but not the height.
<select style="width:200px">
  <option value="volvo">
    <div style="height:100px !important ;color:red">Volvo</div>
  </option>
  <option value="saab" style="height:50px;">Saab</option>
  <option value="opel" style="height:50px;">Opel</option>
  <option value="audi" style="height:50px;">Audi</option>
</select> 
    