Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将相同的样式应用于文本和电子邮件输入类型。我试过input[type="text"][type="email"]了,但它不起作用。有什么帮助吗?
input[type="text"][type="email"]
也许可以尝试不使用 " 例如 input[type=text]。如果您想将其应用于两者,请尝试
input[type=text], input[type=email]
或者
input[type="text"], input[type="email"]
它们是等价的。