zoukankan      html  css  js  c++  java
  • Css选择器

    
    
    <body>
    
    <style>
    h1 {background:red}                /* <!-- 标签选择器 -->*/
    h2 strong{background:green}         /* <!-- 派生选择器 -->*/
    #h3 {background:blue}               /* <!-- id选择器,【#】区分 -->*/
    .h4 {background:yellow}             /* <!-- class选择器,【.】区分 -->*/
    [title=W3School]{background:gray;}  /* <!-- 属性选择器 -->*/
    </style>
    
    <h1>标签选择器</h1>
    <h2>标签<strong>派生选择器</strong></h2>
    <h3 id="h3">id选择器</h3>
    <h4 class="h4">class选择器</h4>
    <h5 title="W3School">属性选择器</h5>
    
    
    </body>
    

      

     

  • 相关阅读:
    申请奖励加分
    6.14
    6.11
    6.10
    6.9
    6.8
    6.7
    6.6
    6.5
    6.4
  • 原文地址:https://www.cnblogs.com/lhlong/p/14277102.html
Copyright © 2011-2022 走看看