属性セレクターの特異性はどうなっているのか疑問に思っています。例えば:
- 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>
これら 2 つのセレクターのうち、どちらがより具体的ですか?
.selectform input[type="text"] { }
.selectform .inputbg { }
デモを確認してください http://tinkerbin.com/IaZW8jbI