• HTML(三)选择器--复杂选择器


    1、父子选择器/派生选择器

    <div calss="wrapper">

        <span calss="box">123</span>

    </div>

    <span>456</span>

    1)方式一

    div span{

        background-color:red;

    }

    2)方式二

    .wrapper span{

        background-color:red;

    }

    3)方式三

    .wrapper .box{

        background-color:red;

    }

    2、直接子元素选择器

    <div>

        <em>1</em>

        <strong>

            <em>2</em>

        </stong>

    </div>

    div > em{

        background-color:red;

    }

    3、选择器内核选择方式

    从左到右,从右往左?

    从右往左

    4、并列选择器(重点)

    标签、class、id、直接子元素等随便组合

    组合后的选择器优先级,按照组合元素相加,权重越高,越优先;

    如果权重一样,则后面代码覆盖前面代码,后来先到;

    !important跟在选择器后面,则此选择器为权重最高等级;

    如果选择器后面都有!important,则根据前面组合元素的权重来决定优先级。

    div.demo{

    }

     #id div p.class{

    }

    div .classP#idP{

    }

    5、分组选择器

    列子:让下面标签内的元素的背景色都为红色

    <body>

        <em>1</em>

        <strong>2</strong>

        <span>3</span>

    </body>

    方法一

    em{

        background-color:red;

    }

    strong{

        background-color:red;

    }

    span{

        background-color:red;

    }

    方法二

    em,

    strong,

    span{

        background-color:red;

    }

  • 相关阅读:
    骚猪队的模板
    cs231n 作业2 心路历程
    cs231n 作业1 心路历程
    视觉语言导航综述Visual Language Navigation
    论文阅读DSAE,不知道VAE能不能玩的下去
    icpc 2019 word final A题 思路
    VAE 变分自动编码器入门
    luogu4827 梦美的线段树
    EOJ Monthly 2019.2 存代码
    国王游戏,高精度完全模板
  • 原文地址:https://www.cnblogs.com/xibuhaohao/p/10338837.html
Copyright © 2020-2023  润新知