美文网首页
css 256个选择器越级

css 256个选择器越级

作者: CRJ997 | 来源:发表于2021-10-13 13:55 被阅读0次

    目前这种越级现象只有在IE浏览器才会出现,例如:

    <span id="foo" class="f">颜色是?</span>
    
    #foo {
      color: #000;
      background: #eee;
    }
    .f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f........(此处省略,总共256次) {
      color: #fff;
      background: #333;
    }
    

    这时候IE浏览器的表现是color: #fff,background: #333,表示256个类选择器优先级的累加超过了id选择器。

    相关文章

      网友评论

          本文标题:css 256个选择器越级

          本文链接:https://www.haomeiwen.com/subject/ngnsoltx.html