input type=file
时间: 2023-08-27 22:10:09 浏览: 189
定义input type=file 样式的方法
可以使用CSS来修改input[type='file']的样式。比如可以设置它的背景颜色、宽度和高度等。例如:
```
input[type='file']{
background-color: red;
width: 200px;
height: 50px;
}
```
你还可以更改鼠标经过和按下时的样式,例如:
```
input[type='file']:hover{
background-color: blue;
}
input[type='file']:active{
background-color: green;
}
```
当然你也可以使用JavaScript来修改样式.
阅读全文