Blogger Information
Blog 9
fans 0
comment 0
visits 6852
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
css选择器的属性与用法以及伪类选择器的用法讲解
移动用户-1144300
Original
715 people have browsed it

1 简单选择器

1.1 种类

序号 选择器 描述 举例
1 元素选择器 根据元素标签名称进行匹配 div {...}
2 群组选择器 同时选择多个不同类型的元素 h1,h2,h3{...}
3 通配选择器 选择全部元素,不区分类型 * {...}
4 属性选择器 根据元素属性进行匹配 *[...]
5 类选择器 根据元素 class 属性进行匹配 *.active {...}
6 id 选择器 根据元素 id 属性进行匹配 *#top {...}
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>简单选择器</title>
  7. <style>
  8. /* 类选择器:选择一类元素,也属于属性选择器一种,对应着元素中的class */
  9. .container {
  10. width: 300px;
  11. height: 300px;
  12. display: grid;
  13. grid-template-columns: repeat(3, 1fr);
  14. gap: 5px;
  15. }
  16. /* 类选择器 */
  17. .item {
  18. font-size: 2rem;
  19. /* background-color: lightskyblue; */
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. /* 简单元素选择器 */
  25. /* 改不了的原因是因为在上面的时候设置的所以类为item的颜色 */
  26. /* 标签 < class < id */
  27. /* 当然再用一次同等级的也可以修改设置过的 */
  28. /* .container {
  29. background-color: black;
  30. } */
  31. *#bl.item {
  32. background-color: #fff;
  33. }
  34. .item#bl {
  35. background-color: black;
  36. }
  37. /* 类选择器, class 权重 大于 标签 */
  38. .item#first {
  39. background-color: lightpink;
  40. }
  41. /* id的权重大于class */
  42. *#first.item {
  43. background-color: violet;
  44. }
  45. /* 类选择器
  46. .item {
  47. background-color: gold;
  48. }
  49. /* 多类选择器 */
  50. /* .item.center {
  51. background-color: red;
  52. }
  53. /* id选择器 */
  54. /* #bl {
  55. background-color: hotpink;
  56. } */
  57. /* 所有元素选择器 */
  58. /* *.item {
  59. background-color: indigo;
  60. } */
  61. /* 群组选择器 */
  62. .item1,
  63. .item2,
  64. .item3 {
  65. background-color: red;
  66. }
  67. /* 属性值选择器 */
  68. /* 下面的写法都可以 */
  69. /* 在这里我改了class的值所以678作用不到上面写的css样式 */
  70. .item[title] {
  71. background-color: lightcoral;
  72. }
  73. .item[title="5"] {
  74. background-color: red;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <div class="container" id="qb">
  80. <p class="item" id="bl">1</p>
  81. <div class="item" id="bl">2</div>
  82. <div class="item">3</div>
  83. <div class="item center">4</div>
  84. <div class="item" title="5">5</div>
  85. <div class="item1">6</div>
  86. <div class="item2">7</div>
  87. <div class="item3">8</div>
  88. <div class="item">9</div>
  89. </div>
  90. </body>
  91. </html>

总结要注意选择器的优先级标签 < class< id。
当多个选择器同时和单个选择器选择同一个元素是多个选择器的内容会覆盖单个选择器的内容。
id 和 css 都属于属性选择器只是用的比较多说以专门分出来了。

2 上下页选择器

2.1 一个元素的四种角色

序号 角色 描述
1 祖先元素 拥有子元素,孙元素等所有层级的后代元素
2 父级元素 仅拥有子元素层级的元素
3 后代元素 与其它层级元素一起拥有共同祖先元素
4 子元素 与其它同级元素一起拥有共同父级元素

2.2 四种上下文选择器

序号 选择器 操作符 描述 举例
1 后代选择器 空格 选择当前元素的所有后代元素 div p, body *
2 父子选择器 > 选择当前元素的所有子元素 div > h2
3 同级相邻选择器 + 选择拥有共同父级且相邻的元素 li.red + li
4 同级所有选择器 ~ 选择拥有共同父级的后续所有元素 li.red ~ li
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>上下文选择器</title>
  7. <style>
  8. /* 类选择器:选择一类元素,也属于属性选择器一种,对应着元素中的class */
  9. .container {
  10. width: 300px;
  11. height: 300px;
  12. display: grid;
  13. grid-template-columns: repeat(3, 1fr);
  14. gap: 5px;
  15. }
  16. /* 类选择器 */
  17. .item {
  18. font-size: 2rem;
  19. background-color: lightskyblue;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. /* 上下文选择器 */
  25. /* 后代选择器 */
  26. /* 受到上面类选择器的影响这里看不到 */
  27. div p {
  28. background-color: red;
  29. }
  30. /* 用同等级或高以及优先级的选择器进行调整背景色。 */
  31. .container p {
  32. background-color: #fff;
  33. }
  34. /* 父子选择器 */
  35. /* 受到上面类选择器的影响这里的标签父子选择器看不到 */
  36. div > p {
  37. background-color: blue;
  38. }
  39. /* 这个可以 */
  40. .container > p {
  41. background-color: blue;
  42. }
  43. /* 使用后代选择器模拟父子选择器 */
  44. div div#bl {
  45. background-color: brown;
  46. }
  47. /* 同级相邻选择器 */
  48. /* 选择与第4个相邻的,即后面的"一个"元素 */
  49. /* 但要注意这里用类选择器只能选择+后面类一样的标签 */
  50. /* .item.center + .item {
  51. background-color: lightgreen;
  52. } */
  53. /* 同级所有选择器 */
  54. /* 选择与第4个后面的,有共同父级的所有兄弟元素 */
  55. /* 但要注意这里用类选择器只能选择~后面类一样的标签 */
  56. .item.center ~ .item1 {
  57. background-color: lightgreen;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <div class="container" id="qb">
  63. <p class="item" id="bl">1</p>
  64. <div class="item" id="bl">2</div>
  65. <div class="item">3</div>
  66. <div class="item center">4</div>
  67. <div class="item" title="5">5</div>
  68. <div class="item">6</div>
  69. <div class="item1">7</div>
  70. <div class="item">8</div>
  71. <div class="item1">9</div>
  72. <p class="item">10</p>
  73. <strong class="item">11</strong>
  74. </div>
  75. </body>
  76. </html>

在文档中每一个元素 都有自己的位置,即上下文关系 所以, 完全可以根据元素的上下文关系,来获取到它们。

3 伪类选择器

场景 描述
结构伪类 根据子元素的位置特征进行选择
表单伪类 根据表单控件状态特征进行选择

*伪类最重要的应用场景:

3.1 结构伪类

3.1.1 不分组匹配

序号 选择器 描述 举例
1 :first-child 匹配第一个子元素 div :first-child
2 :last-child 匹配最后一个子元素 div :last-child
3 :only-child 选择元素的唯一子元素 div :only-child
4 :nth-child(n) 匹配任意位置的子元素 div :nth-child(n)
5 :nth-last-child(n) 匹配倒数任意位置的子元素 div :nth-last-child(n)

3.1.2 分组匹配

序号 选择器 描述 举例
1 :first-of-type 匹配按类型分组后的第一个子元素 div :first-of-type
2 :last-of-type 匹配按类型分组后的最后一个子元素 div :last-of-type
3 :only-of-type 匹配按类型分组后的唯一子元素 div :only-of-type
4 :nth-of-type() 匹配按类型分组后的任意位置的子元素 div :nth-of-type(n)
5 :nth-last-of-type() 匹配按类型分组后倒数任意位置的子元素 div :nth-last-of-type(n)

允许使用表达式来匹配一组元素,表达式中的”n”是从”0”开始计数,且必须写到前面
“-n”表示获取前面一组元素,正数表示从指定位置获取余下元素

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. <style>
  8. /* 类选择器:选择一类元素,也属于属性选择器一种,对应着元素中的class */
  9. .container {
  10. width: 300px;
  11. height: 300px;
  12. display: grid;
  13. grid-template-columns: repeat(3, 1fr);
  14. gap: 5px;
  15. }
  16. /* 类选择器 */
  17. .item {
  18. font-size: 2rem;
  19. background-color: lightskyblue;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. /* body , 第一个单元格都 变了 */
  25. /* 为了防止递归,应该在具体的父元素上调用伪类 */
  26. /* :nth-child(1) === :first-child */
  27. .container > :first-child {
  28. /* background-color: wheat; */
  29. }
  30. /* 匹配最后一个 */
  31. .container > :last-child {
  32. /* background-color: lightpink; */
  33. }
  34. /* 匹配任何一个 */
  35. /* 索引是从1开始计算 */
  36. .container > :nth-child(3) {
  37. /* background-color: lightgreen; */
  38. }
  39. /* :nth-child(n) n: 支持表达式 */
  40. /* 当n在表达式中的时, 从0开始 */
  41. .container > :nth-child(2n) {
  42. /* background-color: magenta; */
  43. }
  44. /* even: 代表偶数 */
  45. .container > :nth-child(even) {
  46. /* background-color: magenta; */
  47. }
  48. /* 选择奇数 */
  49. .container > :nth-child(2n-1) {
  50. /* background-color: lightsalmon; */
  51. }
  52. /* odd: 代表奇数 */
  53. .container > :nth-child(odd) {
  54. /* background-color: lightsalmon; */
  55. }
  56. /* 只选择前三个 */
  57. /* n: 0开始 */
  58. /* -0 + 3 = 3
  59. -1 +3 = 2
  60. -2 +3 = 1 */
  61. .container > :nth-child(-n + 3) {
  62. /* background-color: lightgreen; */
  63. }
  64. /* 选择倒数第2个 */
  65. .container :nth-last-child(2) {
  66. /* background-color: lime; */
  67. }
  68. /* 从第4个开始,选择剩下的所有元素 */
  69. .container > :nth-child(n + 4) {
  70. background-color: red;
  71. }
  72. </style>
  73. </head>
  74. <body>
  75. <div class="container" id="qb">
  76. <p class="item" id="bl">1</p>
  77. <div class="item" id="bl">2</div>
  78. <div class="item">3</div>
  79. <div class="item center">4</div>
  80. <div class="item1" title="5">5</div>
  81. <div class="item1">6</div>
  82. <div class="item1">7</div>
  83. <div class="item1">8</div>
  84. <div class="item">9</div>
  85. </div>
  86. </body>
  87. </html>

伪类选择器分为结构伪类: 不分组匹配和结构伪类: 分组匹配。
伪类选择器任然属于类选择器的一种。
运用伪类选择器时要注意应该在具体的父元素上调用伪类。否则会造成递归。

3.3 其它伪类

序号 选择器 描述
1 :active 向被激活的元素添加样式
2 :focus 向拥有键盘输入焦点的元素添加样式
3 :hover 当鼠标悬浮在元素上方时,向元素添加样式
4 :link 向未被访问的链接添加样式
5 :visited 向已被访问的链接添加样式
5 :root 根元素,通常是html
5 :empty 选择没有任何子元素的元素(含文本节点)
5 :not() 排除与选择器参数匹配的元素
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>其他伪类</title>
  7. <style>
  8. a:link {
  9. background-color: darkblue;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <!-- <a href="http://www.php.cn" style="background-color: white;">php</a> -->
  15. <!-- 当用到行内样式的时候就不用在使用伪类了他们作用一样。 -->
  16. <a href="http://www.php.cn" >php</a>
  17. </body>
  18. </html>
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:很好
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post