Difference between #id and div#id

后端 未结 9 1791
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-22 04:52

I am new to css. Can someone help me in differentiating \"#test\" and \"div#test\"?

9条回答
  •  失恋的感觉
    2020-12-22 05:47

    The specificity is different (div#test one is higher) and div#test applies to only a div, not other tags.

    div#test specificity is 0101

    #test specificity is 0100

    Specificity Calculator

提交回复
热议问题