日期:2014-05-17  浏览次数:20716 次

如何美化input file 浏览框,效果如下


如何用css写出这样的效果呢求高手帮帮忙
CSS

------解决方案--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>file</title>
<style type="text/css">
*{margin:0;padding:0;}
body{font-size:12px; color:#333;}

.box{margin:100px auto; width:400px; overflow:hidden; zoom:1;}
.i-txt{width:320px; height:28px; line-height:28px; border:1px solid #eaeaea; float:left;}
.i-file{ position:absolute; opacity:0; width:100%; height:100%; left:0; top:0;}
.btnbox{ position:relative; float:right; background:url(btn.jpg) no-repeat; width:60px; height:30px;}
</style>
</head>

<body>
<div class="box">
<input type="text" class="i-txt" />
<div class="btnbox">
     <input type="file" class="i-file" />
    </div>   
</div>
</body>
</html>



------解决方案--------------------
.i-file{ position:absolute; opacity:0; filter:Alpha(opacity=0); width:100%; height:100%; left:0; top:0;}  加多一句,兼容ie filter:alpha(...)
------解决方案--------------------
<span class="fileInputContainer"><input class="fileInput" type="file" name="" id="" /></span><span>


.messageTxt span.fileInputContainer{background:url(images/这里改成你自己的图片.jpg) no-repeat 0 8px;position:relative;width:57px;}
.fileInput{height:24px;overflow: hidden;font-size:300px;position:absolute;right:0;top:0;opacity: 0;filter:alpha(opacity=0);cursor:pointer;}