css 文件上传按钮美化

转自:http://zixuephp.net/article-85.html

  思路:在一个div里面添加一个图片用作按钮再添加一个input file 文件上传,把文件上传按钮设置透明度为0,绝对定位覆盖在图片上,就实现了自定义上传图片按钮美化了。

html
  1. <div style="position:relative;">                
  2.     <img src="add.png" width="100"/>
  3.     <input type="file" name="file" style="position:absolute;top:0px;left:12px;opacity:0;width:100px;height:100px;"/>
  4. </div>

猜你喜欢

转载自www.cnblogs.com/sharpest/p/10181554.html
今日推荐