Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais
Arquivadas

How to increase font size in html forms. (select/option)

sharique_11 replied
rioreeves

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;
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;

Todas as respostas (1)

Tested on firefox 57 .

       -moz-appearance:none; /* Firefox */
       -webkit-appearance:none; /* Safari and Chrome */
       appearance:none;