Blogger Information
Blog 18
fans 0
comment 0
visits 13299
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS选择器之简单选择器、上下文选择器、伪类选择器小结
马晓宁
Original
635 people have browsed it

选择器

一. 简单选择器

1.1 种类

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

示例代码

  1. <title>简单选择器</title>
  2. <style>
  3. /*元素选择器*/
  4. p {
  5. color: blue;
  6. }
  7. /*属性选择器*/
  8. p[class="p2"] {
  9. color: red;
  10. }
  11. /*类/class选择器*/
  12. .p3 {
  13. color: green;
  14. }
  15. /*ID选择器*/
  16. #p1 {
  17. color: black;
  18. }
  19. /*群组选择器*/
  20. p,
  21. h2 {
  22. background-color: lightblue;
  23. }
  24. /*通配符选择器*/
  25. * {
  26. font-size: 1rem;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <p class="p1" id="p1">p1文字1</p>
  32. <p class="p2">p2文字2</p>
  33. <p class="p3">p3文字</p>
  34. <h2>h2文字</h2>
  35. </body>

效果


二. 上下文选择器

2.1 一个元素的四种角色

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

2.2 四种上下文选择器

序号 选择器 操作符 描述 举例
1 后代选择器 空格 选择当前元素的所有后代元素 div p, body *
2 父子选择器 > 选择当前元素的所有子元素 div > h2
3 同级相邻选择器 + 选择拥有共同父级且相邻的元素 li.red + li
4 同级所有选择器 ~ 选择拥有共同父级的后续所有元素 li.red ~ li

示例代码

  1. <title>上下文选择器</title>
  2. <style>
  3. /*后代选择器*/
  4. section h2 {
  5. color: green;
  6. }
  7. /*父子选择器*/
  8. section > h2 {
  9. color: red;
  10. }
  11. /*同级相邻选择器*/
  12. #item + h2 {
  13. background-color: yellow;
  14. }
  15. /*同级所有选择器*/
  16. #item ~ h2 {
  17. color: pink;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <section>
  23. <div>
  24. <h2 id="item">h2文字1</h2>
  25. <h2>h2文字2</h2>
  26. <h2>h2文字3</h2>
  27. </div>
  28. <h2>h2文字4</h2>
  29. <h2>h2文字5</h2>
  30. </section>
  31. </body>

效果


三. 伪类选择器

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”表示获取前面一组元素,正数表示从指定位置获取余下元素

3.3 其它伪类

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

“不分组匹配”示例代码

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

“分组匹配”示例代码

  1. <title>结构伪类: 分组匹配</title>
  2. <style>
  3. .container {
  4. width: 300px;
  5. height: 300px;
  6. display: grid;
  7. grid-template-columns: repeat(3, 1fr);
  8. gap: 5px;
  9. }
  10. /* 类选择器 */
  11. .item {
  12. font-size: 2rem;
  13. background-color: lightskyblue;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .container span:first-of-type {
  19. background-color: violet;
  20. }
  21. .container span:last-of-type {
  22. background-color: violet;
  23. }
  24. /* span分组前三个 */
  25. .container span:nth-of-type(-n + 3) {
  26. background-color: grey;
  27. }
  28. .container span:nth-last-of-type(-n + 2) {
  29. background-color: coral;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="container">
  35. <div class="item">1</div>
  36. <div class="item">2</div>
  37. <div class="item">3</div>
  38. <div class="item">4</div>
  39. <!-- 分为二组 -->
  40. <span class="item">5</span>
  41. <span class="item">6</span>
  42. <span class="item">7</span>
  43. <span class="item">8</span>
  44. <span class="item">9</span>
  45. </div>
  46. </body>

“其他伪类”示例

  1. <head>
  2. <style>
  3. a:link
  4. {
  5. background-color:yellow;
  6. }
  7. </style>
  8. </head>
  9. <body>
  10. <a href="http://www.google.com">Google</a>
  11. /*:link 选择器为未被访问过的链接设置样式。*/
  12. </body>

2.:focus向拥有键盘输入焦点的元素添加样式

  1. <head>
  2. <style>
  3. input:focus {
  4. background-color: yellow;
  5. }
  6. </style>
  7. </head>
  8. <body>
  9. <form>
  10. First name: <input type="text" name="firstname" /><br />
  11. Last name: <input type="text" name="lastname" />
  12. </form>
  13. </body>

3.:hover当鼠标悬浮在元素上方时,向元素添加样式

  1. <head>
  2. <style>
  3. a:hover {
  4. background-color: yellow;
  5. }
  6. </style>
  7. </head>
  8. <body>
  9. <a href="http://www.google.com">Google</a>
  10. <p><b>注释:</b>:hover 选择器鼠标指针在其上浮动的链接设置样式。</p>
  11. </body>

四.总结

1.通过今天的学习,了解到要使用css对HTML页面中的元素实现一对一,一对多或者多对一的控制,这就需要用到CSS选择器。HTML页面中的元素就是通过CSS选择器进行控制的。选择器就是根据不同需求把不同的标签选出来,然后针对性性的进行样式设定,可以实现各种复杂的指定,同时也能大量减少样式表的代码书写量,最终书写出来的样式表也会变得简洁明了。
2.比如标签选择器可以直接作用于多个标签(中间以逗号隔开进行选择器分组),标签选择器可以选中所有的标签元素,比如div,ul,li ,p等等,不管标签藏的多深,都能选中,选中的是所有的,而不是某一个,所以说 “共性” 而不是 ”特性“。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:合理的使用css, 可以让你的html代码非常的简洁
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