Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 1 ответ
  • 1 имеет эту проблему
  • 1 просмотр
  • Последний ответ от sharique_11

more options

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;

Все ответы (1)

more options

Tested on firefox 57 .

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