1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 如何定义input标签中type – CSS – 前端 css选择器的使用

如何定义input标签中type – CSS – 前端 css选择器的使用

时间:2020-02-13 12:34:47

相关推荐

如何定义input标签中type – CSS – 前端 css选择器的使用

第一种:

.style1{color:red;}

.style2{color:green;}

<input type=”text” class=”style1″ />

<input type=”password” class=”style2″ />

第二种:

<input type=”text” />

<input type=”password” />

第三种:css3选择器,ie低版本不支持

input[type=text]{color:red;}

input[type=password]{color:green;}

<input type=”text” />

<input type=”password” />

当然还可以根据js去做

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。