0

How we can give the padding for option in select box or height ? like this :

<select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="vw">VW</option>
  <option value="audi" selected>Audi</option>
</select>
Bhupinder kumar
  • 558
  • 1
  • 5
  • 19

2 Answers2

2

You cannot add custom style to Select input element since they are render by User agents (Browsers). You can use some plugin to render select element so that you can customize as you wish.

Sa Si Kumar
  • 652
  • 1
  • 5
  • 12
0

Yes you cannot add custom style to Select input element since they are render by User agents (Browsers). You can use some plugin to render select element so that you can customize as you wish.