|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
CSS非常容易编写。你可以象写html代码一样轻松地编写CSS。
我们在做表单的情形下,input、textarea、button的款式对照简单界说,select和inputfile的款式难以界说。
inputfile在体系默许下的表面:
我们最多经由过程界说input的border来改动体系默许的表面:
假如要让扫瞄按钮更大度一点,我们想界说它的背景色彩,乃至想用背景图片来取代,经由过程css界说inputflie还真是办不到的。偶尔看到一篇文章:inputfile文件选择框丑化作者是把体系默许的按钮设置通明度为0,再界说一个label标签款式,来掩盖通明失落的按钮。
依照作者的办法,我也实验了一下,代码以下:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
<title>inputfile的另类做法</title>
<styletype="text/css">
<!--
*{font-size:12px}
body{margin:0}
.line{position:relative;float:left;padding:8px0}
.linespan{float:left}
input{border:1pxsolid#888;vertical-align:middle}
.file{position:absolute;left:90px;top:8px;display:none;filter:alpha(opacity=0);opacity:0}
.file1{padding:2px10px;display:block;float:left;background:#FF66CC;color:#fff;z-index:1;margin-left:5px;vertical-align:middle;cursor:pointer}
.inputstyle{width:150px;border:1pxsolid#888;z-index:99}
-->
</style>
</head>
<body>
<divclass="line"><span>
<label>上传文件:</label>
<inputname=""type="text"id="viewfile"onmou搜索引擎优化ut="document.getElementById(upload).style.display=none;"class="inputstyle"/>
</span>
<labelfor="unload"onmou搜索引擎优化ver="document.getElementById(upload).style.display=block;"class="file1">扫瞄...</label>
<inputtype="file"onchange="document.getElementById(viewfile).value=this.value;this.style.display=none;"class="file"id="upload"/>
</div>
</body>
</html>
效果:
固然多了良多标签,但这类移花接木的做法仍是值得研讨。有无更好、更迷信的作法另有待开掘。
表现和结构分离,在团队开发中更容易分工合作而减少相互关联性 |
|