样式:
代码如下 | 复制代码 |
.fileInput{width:102px;height:34px; background:url(http://images.cnblogs.com/cnblogs_com/dreamback/upFileBtn.png);overflow:hidden;position:relative;} .upfile{position:absolute;top:-100px;} .upFileBtn{width:102px;height:34px;opacity:0;filter:alpha(opacity=0);cursor:pointer;} HTML: <div class="fileInput left"> |
在网上找了一些文件上传按钮美化的,都不是很好,不兼容Firefox。
以下是我的方法(非常简单,且各浏览器都有很好表现):
代码如下 | 复制代码 |
HTML: <input type="file" name="file_0_ture" size="20" onchange="document.getElementById('file_0').value=this.value" class="text opacity"><input name="file_0" id="file_0" value="" class="text"> <input type="button" value="浏览..." class="file_btn"> CSS: |