常用的css选择器

目录

1. 类名选择器--- .class

2. id选择器 --- #id

3.通配符 --- *

4.标签选择器

5.后代选择器

5.1 直接子类选择器  element>element

5.2 后代子类选择器 element element

6.兄弟选择器  ---  element + element1

 7.属性选择器  (要用[])

8.结构伪类选择器

8.1 nth-child(n) 选择某个父元素的一个或多个特定的子元素

8.2.nth-of-type

9.伪元素选择器

10.各种选择器的权重


1. 类名选择器--- .class

根据元素的class名选择(class名不唯一)

<style>
    .box {
      width: 50%;
      background-color: pink;
    }
  </style>
  <body>
    <div class="box">类名选择器</div>
  </body>

2. id选择器 --- #id

根据元素id选择(id唯一,不重复)

 <style>
    /* id选择器 */
    #test {
      width: 50%;
      background-color: lightgreen;
    }
  </style>
  <body>
    <div id="test">id选择器</div>
  </body>

3.通配符 --- *

选择所有元素

   *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

4.标签选择器

通过标签类型选择元素

<span>标签选择</span>
 span {
      display: block;
      width: 50%;
      height: 30px;
      background-color: lightblue;
    }

5.后代选择器

5.1 直接子类选择器  element>element

例:.father>p选择为父级类名为father的p标签

.father>p{
      background-color: lightcoral;
    }

5.2 后代子类选择器 element element

例:.father span 选择类名为father的元素的所有后代span元素

.father span {
      display: block;
      width: 100%;
      background-color: lightsalmon;
    }

6.兄弟选择器  ---  element + element1

选择紧跟着element元素后面的element1

.father + .f_b {
      background-color: rgb(33, 177, 153);
    }

以上所有选择器代码如下:

<!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>
  </head>
  <style>
    /* 通配符 */
    * {
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }
    /* 类名选择器 */
    .box {
      width: 50%;
      background-color: pink;
    }
    /* id选择器 */
    #test {
      width: 50%;
      background-color: lightgreen;
    }
    /* 标签选择 */
    span {
      display: block;
      width: 50%;
      height: 30px;
      background-color: lightblue;
    }
    .father {
      width: 50%;
      /* background-color: rgb(114, 162, 245); */
    }
    /* 后代选择器 */
    .father > p {
      background-color: lightcoral;
    }
    .father span {
      display: block;
      width: 100%;
      background-color: lightsalmon;
    }
    .f_b {
      width: 50%;
    }
    .father + .f_b {
      background-color: rgb(33, 177, 153);
    }
  </style>
  <body>
    <div class="box">类名选择器</div>
    <div id="test">id选择器</div>
    <span>标签选择</span>
    <div class="father">
      <p>子</p>
      <span>father的儿子</span>
      <div>
        <p>直接子类选择器找不到我</p>
        <span>father的孙子</span>
      </div>
    </div>
    <div class="f_b">father的兄弟标签</div>
    <div class="f_b">通过 .father+f_b找不到我</div>
  </body>
</html>

效果:

 7.属性选择器  (要用[])

  • E[att]——选择具有att属性的元素E
  • E[att="val:]—— 选择具有att属性且属性值等于val的E元素
  • E[att^="val:]—— 选择具有att属性且属性值以val开头的E元素
  • E[att$="val:]—— 选择具有att属性且属性值以val结尾的E元素
  • E[att*="val:]—— 选择具有att属性且属性值中含有val的E元素

代码演示:

<!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>
  </head>
  <style>
    /* 1.选择具有value属性的元素input */
    input[value] {
      color: red;
    }
    /* 2.选择具有value属性且属性值等于李四的input元素 */
    input[value='李四'] {
      color: skyblue;
    }
    /* 3.选择具有value属性且属性值以 王 开头的input元素 */
    input[value^='王'] {
      color: rgb(16, 242, 219);
    }
    /* 4.选择具有value属性且属性值以 子 解为的input元素 */
    input[value$='子'] {
      color: rgb(242, 16, 174);
    }
    /* 5.选择具有value属性且属性值中含有678的input元素 */
    input[value*='678'] {
      color: rgb(35, 242, 16);
    }
  </style>
  <body>
    <input type="text" value="张三123" /><br />
    <input type="text" value="李四" /><br />
    <input type="text" value="王五" /><br />
    <input type="text" value="麻子" /><br />
    <input type="text" value="刘备678" /><br />
    <input type="text" value="关羽678" /><br />
    <input type="text" value="张飞678" /><br />
  </body>
</html>

效果展示:

8.结构伪类选择器

8.1 nth-child(n) 选择某个父元素的一个或多个特定的子元素

  • n可以是数字,也可以是公式
  • 如果n是数字,就是选择第n个子元素,数字从1开始
  • n可以是关键字,even:偶数,odd:奇数
  • n也可以是公式,常见公式如下:
公式取值
2n偶数
2n+1奇数
5n5,10,15……
n+5从第五个开始到最后,包含第五个

代码演示:

<!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>
  </head>
  <style>
    li {
      list-style: none;
    }
    /* 1.n为数字 */
    ul li:nth-child(1) {
      color: aqua;
    }
    /* 2. n 为关键字 */
    ul li:nth-child(even) {
      color: rgb(15, 237, 59);
    }
    ul li:nth-child(odd) {
      color: rgb(191, 18, 96);
    }
    /* 3. n 为公式 */
    ul li:nth-child(5n) {
      background-color: lightcoral;
    }
  </style>
  <body>
    <ul>
      <li>第1个li标签</li>
      <li>第2个li标签</li>
      <li>第3个li标签</li>
      <li>第4个li标签</li>
      <li>第5个li标签</li>
      <li>第6个li标签</li>
      <li>第7个li标签</li>
      <li>第8个li标签</li>
      <li>第9个li标签</li>
      <li>第10个li标签</li>
    </ul>
  </body>
</html>

效果展示:

8.2.nth-of-type

用法和 nth-child() 类似

nth-child 和 nth-of-type 的区别:

  • nth-child 对父元素里面所有孩子排序选择(序号固定)先找到第n个孩子,然后看是否和对应元素匹配
  • nth-of-type 对父元素里面指定的子元素进行排序选择,先去匹配对应元素,然后根据对应元素找到第n个孩子

9.伪元素选择器

伪元素选择器可以帮助我们利用css创建新标签元素,而不需要HTML标签,从而简化HTML结构。

选择符简介
::before在元素内部的前面插入内容
::after在元素内部的后面插入内容

代码演示:

<!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>
  </head>
  <style>
    .p1::before {
      content: '添加的';
      color: red;
    }
    .p2::after {
      content: '添加的';
      color: red;
    }
  </style>
  <body>
    <p class="p1">在我前面加内容</p>
    <p class="p2">在我后面加内容</p>
  </body>
</html>

效果展示:

注意: 

  • before 和 after 创建一个元素,但是属于行内元素
  • before 和 after 必须要有content 属性

10.各种选择器的权重

选择器权重值
!important最高优先级
内联样式1000
id选择器100
类、伪类选择器10
标签选择器1
通配符0

css的选择器还有很多,本文列举的只是博主认为常用的。

永远相信美好的事情即将发生!

  • 5
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值