美文网首页
03-CSS基础-CSS三大特性

03-CSS基础-CSS三大特性

作者: xiaohan_zhang | 来源:发表于2019-08-02 16:14 被阅读0次
    继承性

    给父元素设置一些属性, 子元素也可以使用。

    <style>
            div{
                color: red;
            }
    </style>
    <div>
        <ul>
            <li>
                <p>我是段落</p>
            </li>
        </ul>
    </div>
    
    <!--p会变成红色-->
    

    注:
    1)并不是所有的属性都可以继承, 只有以color/font-/text-/line-开头的属性才可以继承;
    2)a标签的文字颜色和下划线是不能继承的;
    3)h标签的文字大小是不能继承的;

    一般用于设置网页上的一些共性信息, 例如网页的文字颜色, 字体,文字大小等内容

    body{
       font-size: 30px;
       font-family: "微软雅黑"
       color: #666;
    }
    
    层叠性

    层叠性就是CSS处理冲突的一种能力。
    注意:只有在多个选择器选中同一个标签,又设置了相同的属性,才会发生层叠性。

    <style>
        p{
            color: red;
        }
        .para{
            color: blue;
        }
    </style>
    <p id="identity" class="para">我是段落</p>
    
    <!-- 最终显示蓝色, 因为红色被覆盖掉了 -->
    
    优先级

    当多个选择器选中同一个标签, 并且给同一个标签设置相同的属性时, 如何层叠就由优先级来确定。

    优先级判断的三种方式:

    1. 间接选中就是指继承
      如果是间接选中, 那么就是谁离目标标签比较近就听谁的
    <style>
      li{
            color: blue;
      }
      ul{
            color: red;
      }
    </style>
    <ul>
        <li>
            <p id="identity" class="para">我是段落</p>
        </li>
    </ul>
    <!-- 最终显示蓝色 -->
    
    1. 相同选择器(直接选中)
      如果都是直接选中, 并且都是同类型的选择器, 那么就是谁写在后面就听谁的。
    <style>
     p{
          color: blue;
      }
     p{
          color: red;
     }
    </style>
    <ul>
        <li>
            <p id="identity" class="para">我是段落</p>
        </li>
    </ul>
    <!-- 最终显示红色 -->
    
    1. 不同选择器(直接选中)
      如果都是直接选中, 并且不是相同类型的选择器, 那么就会按照选择器的优先级来层叠。
      id>类>标签>通配符>继承>浏览器默认
    <style>
      #identity{
          color: purple;
      }
      .para{
          color: pink;
      }
      p{
          color: green;
      }
      *{
          color: blue;
      }
      li{
          color: red;
      }
    </style>
    <ul>
        <li>
            <p id="identity" class="para">我是段落</p>
        </li>
    </ul>
    <!-- 最终显示紫色 -->
    
    !important

    用于提升某个直接选中标签的选择器中的某个属性的优先级的, 可以将被指定的属性的优先级提升为最高。

    <style>
        #identity{
            color: purple;
            font-size: 50px;
        }
        .para{
            color: pink ;
        }
        p{
            color: green !important;
        }
    </style>
    <body>
        <ul>
            <li>
                <p id="identity" class="para">我是段落</p>
            </li>
        </ul>
    </body>
    <!-- 最终显示绿色 -->
    

    注意点:
    1)!important只能用于直接选中, 不能用于间接选中
    2)通配符选择器选中的标签也是直接选中的
    3)!important只能提升被指定的属性的优先级, 其它的属性的优先级不会被提升

    优先级权重

    当多个选择器混合在一起使用时, 我们可以通过计算权重来判断谁的优先级最高。

    权重的计算规则:
    1)先计算选择器中有多少个 id, id 多的选择器优先级最高;

    <!--都是直接选中p标签 -->
    <style>
       #identity1 .box2{
            color: red;
       }
       .box1 .box2{
            color: green;
       }
       div ul li p{
            color: blue;
       }
    </style>
    <div id="identity1" class="box1">
        <ul>
            <li>
                <p id="identity2" class="box2">我是段落</p>
            </li>
        </ul>
    </div>
    <!-- id多最终显示红色 -->
    

    2)如果 id 的个数一样, 那么再看类名的个数, 类名个数多的优先级最高;

    <style>
      .box1 .box2{
            color: blue;
       }
      div .box2{
            color: green;
      }
    </style>
    <div id="identity1" class="box1">
        <ul>
            <li>
                <p id="identity2" class="box2">我是段落</p>
            </li>
        </ul>
    </div>
    <!-- id一样, 比类多, 最终显示蓝色 -->
    

    3)如果类名的个数一样, 那么再看标签名称的个数, 标签名称个数多的优先级最高;

    <style>
      #identity1 ul li p{
            color: red;
      }
      #identity1 ul p{
            color: green;
      }
    </style>
    <div id="identity1" class="box1">
        <ul>
            <li>
                <p id="identity2" class="box2">我是段落</p>
            </li>
        </ul>
    </div>
    <!-- id一样, 类一样, 比标签多最终显示红色 -->
    

    4)如果 id 个数一样, 类名个数也一样, 标签名称个数也一样, 那么就不会继续往下计算了, 那么此时谁写在后面听谁的;

    <style>
      .box1 li #identity2{
            color: blue;
       }
       #identity1 ul .box2{
            color: red;
       }
    </style>
    <div id="identity1" class="box1">
        <ul>
            <li>
                <p id="identity2" class="box2">我是段落</p>
            </li>
        </ul>
    </div>
    <!-- id一样, 类一样, 标签一样, 最终显示红色 -->
    

    注:只有选择器是直接选中标签时才需要计算权重。

    相关文章

      网友评论

          本文标题:03-CSS基础-CSS三大特性

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