标签:
</head>
<!--hover,foucs,active-->
/*hover当鼠标经过改变属性*/
/*foucs当鼠标点击的时候改变颜色*/
/*active当鼠标按中不放开的时候改变颜色*/
<style>
input[type="text"]:hover{
background-color:#006;
}
input[type="text"]:foucs{
background-color:#9F3;
}
input[type="text"]:active{
background-color:#F0C;}
</style>
<body>
<input type="text"name="name" />
<input type="text"name="age" />
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/-chengkai/p/4685879.html