css – 属性选择器,其中值等于A或B?

前端之家收集整理的这篇文章主要介绍了css – 属性选择器,其中值等于A或B?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否可以在CSS中指定一个属性等于两个值之一的元素,如下所示:
input[type=text][type=password]

但是这个选择器似乎不起作用(我假设因为指定相同的属性两次是无效的),有没有人知道如何做?

谢谢,
亚历克斯。

解决方法

喜欢这个? http://jsfiddle.net/m242t/

HTML:

<form>
Username: <input type="username" name="Username" value="Username" /><br />
Password: <input type="password" name="Password" value="Password" /><br />
<input type="submit" value="Submit" />
</form>

CSS:

input[type="username"],input[type="password"] {
    color: blue;
}
原文链接:https://www.f2er.com/css/219870.html

猜你在找的CSS相关文章