<input type="file"></input>
如何更改输入类型旁边的文字字体大小=&#34;文件&#34;用CSS按钮?
答案 0 :(得分:0)
试试这个:
<html>
<head>
<style>
input {
font-size: 25px;
}
</style>
</head>
<body>
<input type="file"></input>
</body>
</html>
P.S。 在FF和Chrome上测试过。