标签: html css html5 css-selectors
我想将相同的样式应用于文本和电子邮件输入类型。 我试过input[type="text"][type="email"],但它不起作用。有什么帮助吗?
input[type="text"][type="email"]
答案 0 :(得分:2)
也许尝试没有“例如输入[type = text]。如果你想将它应用于两者,请尝试
input[type=text], input[type=email]
或
input[type="text"], input[type="email"]
他们是等同的。