无法在IE中设置样式文件按钮

时间:2014-04-03 09:21:41

标签: css internet-explorer file-upload

我有一个用于上传文件的文件按钮,如:

<input type="file" name="tx_searchdp_searchdp[data][file]" id="uploadBtn" class="upload">

但是,它的样式不适用于IE(任何版本,包括最新版本)。在所有其他浏览器中,样式很好。

如何在IE中设置此按钮的样式?

我的css:

input#uploadBtn {
  background: url("img/uploadbtn.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: 0 none;
  cursor: pointer;
  float: left;
  height: 38px;
  text-indent: -9999px;
  width: 38px;
}

1 个答案:

答案 0 :(得分:0)

尝试使用它:

background-image: url('img/uploadbtn.png');
   background-size: 100% 100%;

等...

而不是:

background: url("img/uploadbtn.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);