软讯网络 > 网站建设 > ASP > input的CSS样式,分别对应不同的type的写法
【标 题】:input的CSS样式,分别对应不同的type的写法
【关键字】:
input,CSS,type
【来 源】:http://blog.csdn.net/oobug/archive/2007/04/19/1570148.aspx
input的CSS样式,分别对应不同的type的写法
<style type="text/css">
<!--
/*在IE中*/
input {
border:expression(this.type=="text"?"1px solid red":"style");
}
/*在Firefox中*/
input[type="text"] {
border:1px solid red;
}
-->
</style>
【相关评论】
<a ahref=http://www.szplane.cn>机票</a>