How to increase font size in html forms. (select/option)
In forms which use the html elements select and option, how do I increase the font size.
Here is an example of what I mean.
https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_option
Chrome lets you use the below property, but the equivalent -moz- does not work.
-webkit-appearance: none;
All Replies (1)
Tested on firefox 57 .
-moz-appearance:none; /* Firefox */ -webkit-appearance:none; /* Safari and Chrome */ appearance:none;