青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

03_移动端-结构伪类选择器

<!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>
        /* 结构伪类选择器 权重 10*/
        
        ul li:first-child {
            color: cyan;
        }
        
        ul li:last-child {
            color: red;
        }
        
        ul li:nth-child(8) {
            color: green;
        }
        
        ul li:nth-child(even) {
            background-color: indianred;
        }
        
        ul li:nth-child(odd) {
            background-color: khaki;
        }
        
        ul li:nth-child(2n) {
            border: 1px solid green;
        }
        
        ul li:nth-child(2n + 1) {
            border: 1px solid gold;
        }
        
        ul li:nth-child(5n) {
            text-align: center;
        }
        
        ul li:nth-child(n + 5) {
            font-weight: bolder;
        }
        
        ul li:nth-child(-n + 5) {
            height: 40px;
        }
        
        div span:nth-child(2) {
            /* 注意 */
            /* 第1个span是div的第2个孩子 */
            background-color: coral;
        }
        
        div span:nth-of-type(2n + 1) {
            /* 用法同 nth-child */
            color: red;
        }
    </style>
</head>

<body>
    <!-- 11 -->

    <ul>
        <!-- ul>li{$}*10 -->
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
        <li>6</li>
        <li>7</li>
        <li>8</li>
        <li>9</li>
        <li>10</li>
    </ul>

    <div>
        <p>我是第一个child</p>
        <span>我是第1个span</span>
        <span>我是第2个span</span>
        <span>我是第3个span</span>
    </div>

</body>

</html>

 

posted on 2021-10-03 08:32  芦苇の  阅读(36)  评论(0编辑  收藏  举报