【发布时间】:2011-02-19 00:15:04
【问题描述】:
我尝试更改 HTML 表单,输入类型文件。这是我的代码:
HTML,表单 ID = 表单
<input class="upload_file" type="file" id="file" name="file" />
.CSS
I tried both:
.upload_button{
background: url('../images/upload_btn_bg.png') no-repeat;
width: 200px;
height: 40px;
}
#form input[type=file]{
background: url('../images/upload_btn_bg.png') no-repeat;
width: 200px;
height: 40px;
}
这两种方法都不起作用。我确实从一些网站上看到,比如 facebook、youtube、google 或 twitter,它们有不同的风格。想知道他们是怎么做到的。
【问题讨论】:
标签: css