对于以下 HTML + CSS ( http://jsfiddle.net/Gb3dh/1/ ):
<input class="a" placeholder="here"/>
<input class="b" role="x" placeholder="there"/>
...
.a, .b {
font-style: italic;
}
[placeholder] input[role="x"] {
font-style=normal;
}
为什么“class=b”输入的“font-style”是斜体?我希望第二个 CSS 选择器(获取具有占位符标题且输入具有等于“x”的“title”属性的任何项目)生效。