如何定義input標簽中type?
第一種:
.style1{color:red;}
.style2{color:green;}
<input type="text" class="style1" />
<input type="password" class="style2" />
第二種:
<input type="text" style="color:red;" />
<input type="password" style="color:green;" />
第三種:css3選擇器,ie低版本不支持
input[type=text]{color:red;}
input[type=password]{color:green;}
<input type="text" />
<input type="password" />
當然還可以根據js去做
下一篇html代碼中font