欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何定義input標簽中type

洪振霞2年前25瀏覽0評論

如何定義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去做

css type,如何定義input標簽中type