1

CSS选择器概述

一.CSS3 选择器分类

clipboard.png

二.选择器语法

1. 基本选择器语法

选择器 类型 功能描述
* 通配选择器 选择文档中所有的HTML元素
E 元素选择器 选择指定类型的HTML元素
#id ID选择器 选择指定ID属性值为“id”的任意类型元素
.class 类选择器 选择指定class属性值为“class”的任意类型的任意多个元素
selector1,selectorN 群组选择器 将每一个选择器匹配的元素集合并

 

2. 层次选择器语法

选择器 类型 功能描述
E  F 后代选择器(包含选择器) 选择匹配的F元素,且匹配的F元素被包含在匹配的E元素内
E>F 子选择器 选择匹配的F元素,且匹配的F元素所匹配的E元素的子元素,注意是直接子元素,不包括子元素里的子元素
E+F 相邻兄弟选择器 选择匹配的F元素,且匹配的F元素紧位于匹配的E元素的后面
E~F 通用选择器 选择匹配的F元素,且位于匹配的E元素后的所有匹配的F元素

 

3. 动态伪类选择器语法

选择器 类型 功能描述
E:link 链接伪类选择器 选择匹配的E元素,而且匹配元素被定义了超链接并未被访问过。常用于链接描点上
E:visited 链接伪类选择器 选择匹配的E元素,而且匹配元素被定义了超链接并已被访问过。常用于链接描点上
E:active 用户行为选择器 选择匹配的E元素,且匹配元素被激活。常用于链接描点和按钮上
E:hover 用户行为选择器 选择匹配的E元素,且用户鼠标停留在元素E上。IE6及以下浏览器仅支持a:hover
E:focus 用户行为选择器 选择匹配的E元素,而且匹配元素获取焦点

 

4. 目标伪类选择器

选择器 功能描述
E:target 选择匹配E的所有元素,且匹配元素被相关URL指向

 

5.UI元素状态伪类选择器语法

选择器 类型 功能描述
E:checked 选中状态伪类选择器 匹配选中的复选按钮或者单选按钮表单元素
E:enabled 启用状态伪类选择器 匹配所有启用的表单元素
E:disabled 不可用状态伪类选择器 匹配所有禁用的表单元素

6.结构伪类选择器使用语法

选择器 功能描述
E:fisrt-child 作为父元素的第一个子元素的元素E。与E:nth-child(1)等同
E:last-child 作为父元素的最后一个子元素的元素E。与E:nth-last-child(1)等同
E:root 选择匹配元素E所在文档的根元素。在HTML文档中,根元素始终是html,此时该选择器与html类型选择器匹配的内容相同
E F:nth-child(n) 选择父元素E的第n个子元素F。其中n可以是整数(1,2,3)、关键字(even,odd)、可以是公式(2n+1),而且n值起始值为1,而不是0.
E F:nth-last-child(n) 选择父元素E的倒数第n个子元素F。此选择器与E:nth-child(n)选择器计算顺序刚好相反,但使用方法都是一样的,其中:nth-last-child(1)始终匹配最后一个元素,与last-child等同
E:nth-of-type(n) 选择父元素内具有指定类型的第n个E元素
E:nth-last-of-type(n) 选择父元素内具有指定类型的倒数第n个E元素
E:first-of-type 选择父元素内具有指定类型的第一个E元素,与E:nth-of-type(1)等同
E:last-of-tye 选择父元素内具有指定类型的最后一个E元素,与E:nth-last-of-type(1)等同
E:only-child 选择父元素只包含一个子元素,且该子元素匹配E元素
E:only-of-type 选择父元素只包含一个同类型子元素,且该子元素匹配E元素
E:empty 选择没有子元素的元素,而且该元素也不包含任何文本节点

注:(1),“ul>li:nth-child(3)”表达的并不是一定选择列表ul元素中的第3个子元素li,仅有列表ul中第3个li元素前不存在其他的元素,命题才有意义,否则不会改变列表第3个li元素的样式。

(2),:nth-child(n)  中参数只能是n,不可以用其他字母代替。

(3),:nth-child(odd) 选择的是奇数项,而使用:nth-last-child(odd) 选择的却是偶数项

7.否定伪类选择器

选择器 功能描述
E:not(F) 匹配所有除元素F外的E元素

8.属性选择器语法

选择器 功能描述
[attribute] 用于选取带有指定属性的元素。
[attribute=value] 用于选取带有指定属性和值的元素。
[attribute~=value] 用于选取属性值中包含指定词汇的元素。
[[attribute\ =value]](http://www.w3school.com.cn/cs... 用于选取带有以指定值开头的属性值的元素,该值必须是整个单词。
[attribute^=value] 匹配属性值以指定值开头的每个元素。
[attribute$=value] 匹配属性值以指定值结尾的每个元素。
[attribute=value*] 匹配属性值中包含指定值的每个元素。

下面选择几个我们一般不常用的选择器来讲讲

三.实例

相邻兄弟选择器

选择紧接在另一个元素之后的第一个元素(同级元素)

 <style>
        h1 + p {
            color:red;
        }

    </style>
<h1>彭</h1>
<p>于晏</p>

clipboard.png

看一个该选择器应用的典型例子

 <style>
      body,div{
          margin: 0;
          padding: 0;
      }
        .box{
            width:400px;
        }
        .box > div{
            width:100px;
            height: 35px;
            line-height: 35px;
            text-align: center;
            float:left;
            border: 3px solid #dedede;
            box-sizing: border-box;
        }
    </style>
</head>
<body>
<div class="box">
     <div>HTML</div>
    <div>CSS</div>
    <div>JavaScript</div>
    <div>Node.js</div>
</div>

clipboard.png

可以看到后面几个元素的左边框明显增大了3px,这里我们只需要用+号选择器把除第一个元素以外的左边框去掉就可以l

 .box > div + div{
            border-left: none;
        }

clipboard.png

hover

  • a:link - 正常,未访问过的链接
  • a:visited - 用户已访问过的链接
  • a:hover - 当用户鼠标放在链接上时
  • a:active - 链接被点击的那一刻

    当设置为若干链路状态的样式,也有一些顺序规则:

    • a:hover 必须跟在 a:link 和 a:visited后面
    • a:active 必须跟在 a:hover后面
 body,div{
          margin: 0;
          padding: 0;
      }
      ul{
          list-style: none;
          //让列表前的标记不再显示
      }
      .box{
          width:450px;
          margin: 100px;

      }
        .box > ul li{
            width: 120px;
            height:35px;
            line-height: 35px;
            text-align: center;
            float: left;
            border: 1px solid #dedede;
            box-sizing: border-box;

        }
        .box > ul >li li{
            border-top:none;
        }
        .box > ul >li +li{
            border-left: none;
        }
        .box > ul >li >ul{
            display: none;
        }
        .box > ul >li:hover ul{
            display: block;
            //主要代码
        }
    </style>
    <div class="box">
     <ul>
         <li>
             追梦人
             <ul>
                 <li>博客动态</li>
             </ul>
         </li>
         <li>
             CSS3
             <ul>
                 <li>CSS3文章</li>
                 <li>CSS3技巧</li>
             </ul>
         </li>
         <li>
             HTML5
             <ul>
                 <li>HTML5最新动态</li>
                 <li>HTML5使用教程</li>
             </ul>
         </li>
     </ul>
</div>

clipboard.png

active

 <style>
      body,div{
          margin: 0;
          padding: 0;
      }
    .box{
        width:120px;
        height:100px;
        line-height: 100px;
        text-align: center;
        margin: 100px auto;
        background-color: pink;
        transition: all 1s;
    }
        .box:active{
            padding:100px;
        }
    </style>
<div class="box">
    点击获取能量...
</div>

clipboard.png

first-letter

选中第一个字

first-line

选中首行文字

:empty

当没有子元素,并且没有文本节点的时候,:empty会被触发,可以利用:empty给默认提示

 <style>
      body,div,ul{
          margin: 0;
          padding: 0;
      }
    .box{
        margin:100px;
    }
      ul{
            margin-top;10px;
        }
        ul{
            margin-top: 10px;
        }
        ul:empty::after{
            content:'留言空空如也'
        }
    </style>
<div class="box">
    <input type="text">
    <ul></ul>
</div>

当ul没有内容的时候,会显示一条默认的信息。一旦加上内容,默认信息就会隐藏,不过需要注意的是,ul不能换行,必须这样写。

clipboard.png

:target

获取当前描点的那个元素

实现换肤功能

 <style>
      body,div{
          margin: 0;
          padding: 0;
      }
      .box > div{
          position: absolute;
          left:0;
          top:0;
          width:100%;
          height: 100%;
          z-index: -1;
      }
        #bg1:target{
            background-color: #61dafb;
        }
        //当#bg1元素为target(目标元素)是的style
        #bg2:target{
            background-color: #e9203d;
        }
        #bg3:target{
            background-color: #017fff;
        }
    </style>
<div class="box">
    <nav>
        <a href="#bg1">春</a>
        <a href="#bg2">夏</a>
        <a href="#bg3">秋</a>
    </nav>
    <div id="bg1"></div>
    <div id="bg2"></div>
    <div id="bg3"></div>
</div>

clipboard.png

当id为bg1,bg2和bg3的元素为目标元素时的style相同时,可以直接设置

<style>
      body,div{
          margin: 0;
          padding: 0;
      }
      .box > div{
          position: absolute;
          left:0;
          top:0;
          width:100%;
          height: 100%;
          z-index: -1;
      }
       target{
            background-color: #61dafb;
        }
    </style>
<div class="box">
    <nav>
        <a href="#bg1">春</a>
        <a href="#bg2">夏</a>
        <a href="#bg3">秋</a>
    </nav>
    <div id="bg1"></div>
    <div id="bg2"></div>
    <div id="bg3"></div>
</div>

利用target实现遮罩层

 <style>
      body,div{
          margin: 0;
          padding: 0;
      }
     #show{
         text-decoration: none;
         color: #e9203d;
     }
    #show div{
            position: fixed;
            left: 50%;
            top:50%;
            width:200px;
            height: 200px;
            transform: translate(-50%,-50%);//实现垂直水平居中
            border:10000px solid rgba(0,0,0,0.3);//灰色背景是border,因此设置的很大
            display: none;

        }
        #show:target > div{
            display: block;
        }
        #hide:target{
            display: none;
        }
    </style>
<div class="box">
   <a href="#show">弹出层</a>
    <a href="#hide" id="show">
        <div id="hide">弹弹弹</div>
    </a>
</div>

clipboard.png

实现tab栏切换

 <style>
      body,div{
          margin: 0;
          padding: 0;
      }
    .box{
        width: 300px;
        height: 300px;
        text-align: center;
        margin: 100px auto;
    }
        .title{
            overflow: hidden;
        }
        .title > a{
            float: left;
            width:100px;
            height: 35px;
            line-height: 35px;
            border:1px solid #dedede;
            box-sizing: border-box;
            text-decoration: none;

        }
        .title > a:not(:first-of-type){
            border-left: none;
        }
        .content{
            position: relative;
        }
        .content > div{
            position: absolute;
            left:0;
            top:0;
            width:100%;
            height: 200px;
            line-height: 200px;
            border:1px solid #dedede;
            background-color: #61dafb;
            border-top:none;
            box-sizing: border-box;
        }
        #content1{
            z-index: 1;
        }
        #content1:target,#content2:target,#content3:target{
            z-index: 999;
        }
    </style>
<div class="box">
   <nav class="title">
       <a href="#content1">CSS</a>
       <a href="#content2">HTML</a>
       <a href="#content3">JavaScript</a>
   </nav>
    <div class="content">
    <div id="content1">CSS</div>
    <div id="content2">HTML</div>
    <div id="content3">JavaScript</div>
    </div>
</div>

clipboard.png


GISChen
167 声望7 粉丝