为什么css选择器
select, textarea, input[type="text"], input[type="password"],input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input
优先于
input.text-style
以下html:
<input type="text" required="required" name="poemDataCollector[name]" id="poemDataCollector_name" class="text-style">
我读到该类应优先于html标签......
答案 0 :(得分:4)
属性选择器同样特定于类选择器。
如果你想覆盖你可以这样编写的类:
input.text-style[type="text"]
查看此决定以获取更多What is the specificity of the attribute selector?