CSS选择器优先级

时间:2012-07-11 06:52:03

标签: css css-selectors

为什么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标签......

1 个答案:

答案 0 :(得分:4)

属性选择器同样特定于类选择器。

如果你想覆盖你可以这样编写的类:

input.text-style[type="text"]

查看此决定以获取更多What is the specificity of the attribute selector?

阅读此http://www.w3.org/TR/selectors/#specificity