博客列表 >Web 前端 - CSS - 选择器

Web 前端 - CSS - 选择器

郴
原创
2020年04月07日 17:56:521151浏览

Web 前端 - CSS - 选择器

一、简单选择器

序号 选择器 描述 格式 举例
1 元素选择器 根据元素标签名称进行匹配 ele_name div {...}
2 属性选择器 根据元素属性进行匹配 ele_name[property] *[...]
3 类选择器 根据元素 class 属性进行匹配 .ele_class_name *.active {...}
4 id 选择器 根据元素 id 属性进行匹配 #ele_id *#top {...}
5 群组选择器 同时选择多个不同类型的元素 e1, e2, e3... h1,h2,h3{...}
6 通配选择器 选择全部元素,不区分类型 * * {...}

二、上下文选择器

序号 选择器 操作符 描述 举例
1 后代选择器 空格 选择当前元素的所有后代元素,递归 div p, body *
2 父子选择器 > 选择当前元素的所有子元素,仅二级 div > h2
3 同级相邻选择器 + 选择拥有共同父级且相邻的元素,该元素紧接着的下一个元素 li.red + li
4 同级所有选择器 ~ 选择拥有共同父级的后续所有元素,该元素紧接着的后面的所有元素 li.red ~ li
  • 一个元素的四种角色
序号 角色 描述
1 祖先元素 拥有子元素,孙元素等所有层级的后代元素
2 父级元素 仅拥有子元素层级的元素
3 后代元素 与其它层级元素一起拥有共同祖先元素
4 子元素 与其它同级元素一起拥有共同父级元素

三、伪类选择器

1. 结构伪类

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)

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(n) 匹配按类型分组后的任意位置的子元素 div :nth-of-type(n)
5 :nth-last-of-type(n) 匹配按类型分组后倒数任意位置的子元素 div :nth-last-of-type(n)

1.3 n支持表达式

序号 表达式 描述 举例
1 2n/even 代表所有偶数 div :nth-child(even)/div :nth-of-type(even)
2 2n-1/odd 代表所有奇数 div :nth-child(odd)/div :nth-of-type(odd)
3 -n + n 代表前n个 div :nth-child(-n + 3)/div :nth-of-type(-n + 3)
4 n + n 代表从第n个开始一直到最后一个 div :nth-child(n + 3)/div :nth-of-type(n + 3)

2. 其他伪类

序号 选择器 描述
1 :active 向被激活的元素添加样式
2 :focus 向拥有键盘输入焦点的元素添加样式
3 :hover 当鼠标悬浮在元素上方时,向元素添加样式
4 :link 向未被访问的链接添加样式
5 :visited 向已被访问的链接添加样式
5 :root 根元素,通常是html
5 :empty 选择没有任何子元素的元素(含文本节点)
5 :not() 排除与选择器参数匹配的元素

四、选择器的优先级

  • 内联 > ID选择器 > 类选择器 > 标签选择器

五、代码示例

  1. <!DOCTYPE html>
  2. <html lang="zh_hans">
  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. /*元素选择器*/
  9. div {
  10. color: saddlebrown;
  11. }
  12. span {
  13. color: slateblue;
  14. }
  15. /*属性选择器*/
  16. div[title="div"] {
  17. color: teal;
  18. }
  19. /*类选择器*/
  20. .s {
  21. width: 20px;
  22. height: 20px;
  23. background-color: wheat;
  24. }
  25. /*id选择器*/
  26. #box {
  27. width: 200px;
  28. height: 200px;
  29. background-color: lightgreen;
  30. }
  31. #nav {
  32. margin-left: 100px;
  33. }
  34. /*群组选择器*/
  35. .d, .s {
  36. font-size: larger;
  37. }
  38. /*通配选择器*/
  39. * {
  40. margin: 0;
  41. padding: 0;
  42. }
  43. /*后代选择器*/
  44. #box div {
  45. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  46. }
  47. /*父子选择器*/
  48. #box > span {
  49. font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  50. }
  51. /*同级相邻选择器*/
  52. .d[title="div"] + div {
  53. color: lightsteelblue;
  54. }
  55. /*同级所有选择器*/
  56. .s[title="span"] ~ span {
  57. color: magenta;
  58. }
  59. /*:first-child选择器*/
  60. #box :first-child {
  61. background-color: mediumpurple;
  62. }
  63. /*:last-child选择器*/
  64. #box :last-child {
  65. display: inline-block;
  66. background-color: palevioletred;
  67. }
  68. /*:only-child选择器*/
  69. #p :only-child {
  70. color: gray;
  71. }
  72. /*:nth-child(n)选择器*/
  73. #box :nth-child(3) {
  74. background-color: hotpink;
  75. }
  76. #box :nth-child(-n + 2) {
  77. margin-left: 50px;
  78. }
  79. /*:nth-last-child(n)选择器*/
  80. #box :nth-last-child(2) {
  81. margin-left: 20px;
  82. }
  83. /*:first-of-type选择器*/
  84. #box span:first-of-type {
  85. color: lightblue;
  86. }
  87. /*:last-of-type选择器*/
  88. #box span:last-of-type {
  89. color: lightblue;
  90. }
  91. /*:only-of-type选择器*/
  92. #p p:only-of-type {
  93. width: 100px;
  94. background-color: lightcoral;
  95. }
  96. /*:nth-of-type(n)选择器*/
  97. #box span:nth-of-type(3) {
  98. color: lightgray;
  99. }
  100. #box span:nth-of-type(n + 2) {
  101. background-color: lightsteelblue;
  102. }
  103. /*:nth-last-of-type(n)选择器*/
  104. #box div:nth-last-of-type(1) {
  105. background-color: mediumpurple;
  106. }
  107. /*:hover选择器*/
  108. ul li:hover > a {
  109. text-decoration: none;
  110. }
  111. </style>
  112. </head>
  113. <body>
  114. <div id="box">
  115. <div class="d" title="div">d1</div>
  116. <div class="d">d2</div>
  117. <div class="d">d3</div>
  118. <div class="d">d4</div>
  119. <span class="s">s1</span>
  120. <span class="s" title="span">s2</span>
  121. <span class="s">s3</span>
  122. <span class="s">s4</span>
  123. </div>
  124. <div id="p"><p>p1</p></div>
  125. <div id="nav">
  126. <ul>
  127. <li><a href="#">a1</a></li>
  128. <li><a href="#">a2</a></li>
  129. <li><a href="#">a3</a></li>
  130. <li><a href="#">a4</a></li>
  131. </ul>
  132. </div>
  133. </body>
  134. </html>

六、课程总结

  • 今天学习了 CSS 常用的选择器,通过上课认真听讲和认真完成老师布置的作业,使得我对 CSS 的理解和运用更加深入和熟悉。最主要的知识点是明白了选择器都有哪些类型以及上下文选择器和伪类选择器各自的特点,以及了解并熟悉了常见的 css 选择器诸如上下文选择器和伪类选择器的用法。
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议