美文网首页
目前CSS3及之前的版本是不具备父级选择的

目前CSS3及之前的版本是不具备父级选择的

作者: null_su | 来源:发表于2017-04-14 09:50 被阅读0次

    目前CSS3之前的版本是不具备父级选择的

    html:

    <div class="wrap">
        <div class="inner"></div>
    </div>  
    

    css:

    .wrap:hover .inner{background: #fff} //有效
    .inner:hover .wrap{background: #fff};//无效

    相关文章

      网友评论

          本文标题:目前CSS3及之前的版本是不具备父级选择的

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