我想知道属性选择器的特殊性是什么。例如:
- ID = 100 分
- 课程 = 10 分
- html标签= 1分
例子:
/* this specificity value is 100 + 10 + 1 = 111 */
#hello .class h2 { }
使用此 HTML:
<div class="selectform">
<input type="text" value="inter text">
<input type="text" value="inter text" class="inputag">
</div>
这两个选择器中哪一个更具体?
.selectform input[type="text"] { }
.selectform .inputbg { }