其他分享
首页 > 其他分享> > 07.伪类选择器

07.伪类选择器

作者:互联网

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        /* 
            将ul里的第一个li设置为红色
        */

        /* 
            伪类(不存在的类,特殊的类)
                -伪类用来描述一个元素的特殊状态
                    比如:第一个子元素、被点击的元素、鼠标移入的元素……
                -伪类一般情况下都是使用:开头
                    :first-child 第一个子元素
                    :last-child 最后一个子元素
                    :nth-child() 第n个子元素
                        特殊值:
                            n 第n个,n的范围是0到正无穷
                            2n或even 表示选中偶数位的元素
                            2n+1或odd 表示选中奇数位的元素
                        
                    -以上这些伪类都是根据所有的子元素进行排序

                    :first-of-type
                    :last-of-type
                    :nth-of-type()
                        -这几个伪类的功能和上述的类似,不同点是他们是在同元素类型中进行排序

                    :not() 否定伪类
                        -将符合条件的元素从选择器中去除
        */
        ul>li:first-child{
            color:red;
        }
        /* 第一个子元素不是li,所以该语句无效 */

        ul>li:last-child{
            color:red;
        }

        ul>li:nth-child(3){
            color:red;
        }

        ul>li:first-of-type{
            color:pink;
        }

        /*ul>li:not(:nth-of-type(3)){
            color:yellowgreen;
        }*/

        ul>li:not(:nth-child(3)){
            color:yellowgreen;
        }        

    </style>


</head>
<body>
    <!-- 
        快捷键:
            ul>li,tab键
            ul+ul,tab键
            ul>li*6
     -->
    <ul>
        <span>我是一个span</span>
        <li>第零个</li>
        <li>第一个</li>
        <li>第二个</li>
        <li>第三个</li>
        <li>第四个</li>
        <li>第五个</li>
    </ul>

</body>
</html>

 

标签:07,伪类,color,元素,li,ul,child,选择器
来源: https://www.cnblogs.com/sherryyuan/p/16350521.html