美文网首页
2.6 (案例)only-child--only-type-

2.6 (案例)only-child--only-type-

作者: 柒月柒日晴7 | 来源:发表于2017-06-07 10:58 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title></title>
        </head>
        <body>
            <style>
                /*:only-child"  表示的是一个元素是它的父元素的唯一一个子元素
                IE6-8浏览器不支持:only-child选择器*/
                /*ul li:only-child{             
                    background: red;        
                }*/
                /*ul div:only-child{                
                    background: yellow;     
                }*/
            
                /*:only-of-type  是表示一个元素他有很多个子元素,而其中只有一个子元素是唯一的
                IE6-8和FF3.0-浏览器不支持:only-of-type选择器。*/
                /*ul div:only-of-type{
                    background: red;
                    color: #fff;
                }*/*/
                
            </style>
            
            <ul>
                <li>123
                    <div>123</div>
                </li>
            </ul>
            <ul>
                <li>123</li>
                <li>123</li>
                <li>123</li>
                <li>123</li>
                <li>123</li>
                <div>123</div>
            </ul>
        </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:2.6 (案例)only-child--only-type-

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