搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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;