如何更改input type =“file”按钮旁边的文本字体大小?

时间:2014-01-04 16:14:16

标签: file upload

<input type="file"></input> 

如何更改输入类型旁边的文字字体大小=&#34;文件&#34;用CSS按钮?

1 个答案:

答案 0 :(得分:0)

试试这个:

<html>
  <head>
  <style>
   input {
          font-size: 25px;
    }
  </style>
</head>

<body>
  <input type="file"></input>
</body>
</html>

P.S。 在FF和Chrome上测试过。