Change HTML dropdown option font size
css, html
Solution
You should turn off the default OS styling with: `-webkit-appearance: none`;
DEMO here
Problem
I have this simple HTML dropdown menu: ``` <select> <option style="font-size:50px;">Test</option> </select> ``` I can't find a way to increase the font size of the option. The font-size property is being ignored for some reason. Is this a bug or what? Thanks