将元素的透明度改为全透明:opacity:0;    filter:Alpha(opacity=0),两个是为了解决浏览器兼容问题,透明度兼容性:

  filter: alpha(opacity=80);              //IE

  -moz-opacity:0.8;                       //火狐

  opacity:0.8;                            //其他浏览器


<
div class="" style=" position: absolute; top:75px; right:0px; opacity: 0; filter:Alpha(opacity=0);"> <input type="file" /> </div>

 

相关文章:

  • 2021-06-25
  • 2021-07-13
  • 2022-03-15
  • 2022-02-01
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-04
  • 2022-12-23
  • 2021-04-03
  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
相关资源
相似解决方案