Blogger Information
Blog 57
fans 3
comment 0
visits 60553
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS选择器-标签选择器/属性选择器/上下文选择器/伪类选择器
岂几岂几
Original
717 people have browsed it

CSS 的选择器:简单选择器/上下文选择器/伪类选择器

1. 简单选择器

1.1 标签选择器

根据元素标签名称进行匹配

标签选择器 demo:

  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>标签选择器demo</title>
  7. <style>
  8. p {
  9. color: lightpink;
  10. font-size: 24px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <p>今天学习CSS选择器</p>
  16. </body>
  17. </html>

demo 运行效果图:

1.2 组群选择器

同时选择多个不同类型的元素

组群选择器 demo:

  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>标签选择器demo</title>
  7. <style>
  8. h1,
  9. h2,
  10. h3 {
  11. color: lightsalmon;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <h1>我是一级标题</h1>
  17. <h2>我是二级标题</h2>
  18. <h3>我是三级标题</h3>
  19. </body>
  20. </html>

demo 运行效果图:

1.3 通配选择器

选择全部元素,不区分类型

通配选择器 demo:

  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>标签选择器demo</title>
  7. <style>
  8. body {
  9. padding: 10px;
  10. }
  11. .container {
  12. padding: 10px;
  13. }
  14. /* 通配选择器 */
  15. * {
  16. outline: 1px solid red;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="container">
  22. <div class="item">第1个项目</div>
  23. <div class="item">第2个项目</div>
  24. <div class="item">第3个项目</div>
  25. <div class="item">第4个项目</div>
  26. <div class="item">第5个项目</div>
  27. </div>
  28. </body>
  29. </html>

demo 运行效果图:

1.4 属性选择器/类选择器/id 选择器

  • 属性选择器: 根据元素属性进行匹配
  • 类选择器: 根据元素的 class 属性进行匹配
  • id 选择器: 根据元素的 id 属性进行匹配

三种属性选择器 demo:

  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>标签选择器demo</title>
  7. <style>
  8. /* 属性选择器 */
  9. input[name="username"] {
  10. background-color: lime;
  11. }
  12. /* id选择器 */
  13. *#email {
  14. background-color: yellow;
  15. }
  16. /* 类选择器 */
  17. *.realname {
  18. background-color: tomato;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <section>
  24. <label for="">账号:</label>
  25. <input type="text" name="username" />
  26. </section>
  27. <section>
  28. <label for="">邮箱:</label>
  29. <input type="text" id="email" />
  30. </section>
  31. <section>
  32. <label for="">姓名:</label>
  33. <input type="text" class="realname" />
  34. </section>
  35. </body>
  36. </html>

demo 运行效果图:

" class="reference-link">

2. 上下文选择器

2.1 四种上下文选择器

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

上下文选择器 demo:

  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>标签选择器demo</title>
  7. <style>
  8. /* 后代选择器 */
  9. /* 所有导航项背景色都会变成小麦色 */
  10. .nav li {
  11. background-color: wheat;
  12. }
  13. /* 父子选择器 */
  14. /* 所有一级导航的外边距都会变成10px */
  15. #nav > li {
  16. margin: 10px 0;
  17. }
  18. /* 同级相邻选择器 */
  19. /* 国内新闻的字体会变红 */
  20. #international-news + li {
  21. color: red;
  22. }
  23. /* 同级所有选择器 */
  24. /* 排球,乒乓球,网球的字体会变绿 */
  25. #football ~ li {
  26. color: green;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="nav">
  32. <ul id="nav">
  33. <li id="international-news">
  34. <div>国际新闻</div>
  35. </li>
  36. <li>
  37. <div>国内新闻</div>
  38. </li>
  39. <li>
  40. <div>地方新闻</div>
  41. </li>
  42. <li>
  43. <div>体育新闻</div>
  44. <ul>
  45. <li>
  46. <div>篮球</div>
  47. </li>
  48. <li id="football">
  49. <div>足球</div>
  50. </li>
  51. <li>
  52. <div>排球</div>
  53. </li>
  54. <li>
  55. <div>乒乓球</div>
  56. </li>
  57. <li>
  58. <div>网球</div>
  59. </li>
  60. </ul>
  61. </li>
  62. <li>
  63. <div>致富新闻</div>
  64. </li>
  65. </ul>
  66. </div>
  67. </body>
  68. </html>

demo 运行效果图:

疑问:老师,为什么我用父子选择器/同级相邻选择器/统计所有选择器时,如果”体育新闻”所在的<li>元素被选到,在它上面设置的样式,为什么也会影响到它的后代<li>元素的样式?

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)

结构伪类选择器-不分组匹配_demo:

  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>伪类选择器-结构伪类-不分组匹配demo</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. grid-template-columns: repeat(5, 1fr);
  13. gap: 5px;
  14. }
  15. .item {
  16. font-size: 2rem;
  17. background-color: lightskyblue;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. /* 匹配第一个元素 */
  23. /* 利用:first-child给20宫格最外部加边框 */
  24. body > *:first-child {
  25. border: 3px solid red;
  26. }
  27. /* 利用:first-child把第一个方块字体设置为红色 */
  28. body *.item:first-child {
  29. color: red;
  30. }
  31. /* 利用:last-child把最有一个方块字体设置为绿色 */
  32. .container > .item:last-child {
  33. color: green;
  34. }
  35. /* 利用:nth-child()把第二个方块的背景色设置为浅黄色 */
  36. .container .item:nth-child(2) {
  37. background-color: lightyellow;
  38. }
  39. /* 利用:nth-child()为前三个方块增加边框 */
  40. .container .item:nth-child(-n + 3) {
  41. border: 2px dashed green;
  42. }
  43. /* 利用:nth-child()把偶数方块的字体大小设置为15px */
  44. .container :nth-child(even) {
  45. font-size: 15px;
  46. }
  47. /* 利用:nth-child()把奇数方块的背景色设置为浅绿色 */
  48. .container :nth-child(odd) {
  49. background-color: lightgreen;
  50. }
  51. /* 利用:nth-last-child()为倒数第二个方块的字体加上下划线 */
  52. .container :nth-last-child(2) {
  53. text-decoration: underline;
  54. }
  55. /* 利用:nth-last-child()为第十六到第二十个方块加上圆角 */
  56. .container :nth-last-child(-n + 5) {
  57. border-radius: 20px;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <!-- 二十宫格 -->
  63. <div class="container">
  64. <div class="item">1</div>
  65. <div class="item">2</div>
  66. <div class="item">3</div>
  67. <div class="item">4</div>
  68. <div class="item">5</div>
  69. <div class="item">6</div>
  70. <div class="item">7</div>
  71. <div class="item">8</div>
  72. <div class="item">9</div>
  73. <div class="item">10</div>
  74. <div class="item">11</div>
  75. <div class="item">12</div>
  76. <div class="item">13</div>
  77. <div class="item">14</div>
  78. <div class="item">15</div>
  79. <div class="item">16</div>
  80. <div class="item">17</div>
  81. <div class="item">18</div>
  82. <div class="item">19</div>
  83. <div class="item">20</div>
  84. </div>
  85. </body>
  86. </html>

demo 运行效果图:

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)

分组匹配 demo:

  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>伪类选择器-结构伪类-分组匹配demo</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. grid-template-columns: repeat(5, 1fr);
  13. gap: 5px;
  14. }
  15. .item {
  16. font-size: 2rem;
  17. background-color: lightskyblue;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. /* 使用:first-of-type把span元素组的第一个方格的字体颜色设置为红色 */
  23. .container > span:first-of-type {
  24. color: red;
  25. }
  26. /* 使用:last-of-type把span元素组的最后一个方格的背景色设置为黄色 */
  27. .container > .second-group:last-of-type {
  28. background-color: yellow;
  29. }
  30. /* 使用:only-of-type把container的背景色设置为绿色(container的元素没有相同标签名的兄弟元素) */
  31. body > *:only-of-type {
  32. background-color: green;
  33. }
  34. /* 使用:nth-of-type()把span元素组的第二个方格背景色设置为小麦色 */
  35. .container span:nth-of-type(2) {
  36. background-color: wheat;
  37. }
  38. /* 使用:nth-of-type()把div元素组的偶数方格的字体设置为15px */
  39. .container div:nth-of-type(even) {
  40. font-size: 15px;
  41. }
  42. /* 使用:nth-of-type()把div元素组的奇数方格的背景色设置为浅绿色 */
  43. .container div:nth-of-type(odd) {
  44. background-color: lightgreen;
  45. }
  46. /* 使用:nth-last-child()把span元素组的前三个方格加上圆角 */
  47. .container span:nth-of-type(-n + 3) {
  48. border-radius: 10px;
  49. }
  50. /* 使用:nth-last-of-type()把div元素组的后三个方格的文字加下划线 */
  51. .container div:nth-last-of-type(-n + 3) {
  52. text-decoration: underline;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <!-- 二十宫格 -->
  58. <div class="container">
  59. <!-- 第一组 -->
  60. <div class="item first-group">1</div>
  61. <div class="item first-group">2</div>
  62. <div class="item first-group">3</div>
  63. <div class="item first-group">4</div>
  64. <div class="item first-group">5</div>
  65. <div class="item first-group">6</div>
  66. <div class="item first-group">7</div>
  67. <div class="item first-group">8</div>
  68. <div class="item first-group">9</div>
  69. <div class="item first-group">10</div>
  70. <!-- 第二组 -->
  71. <span class="item second-group">11</span>
  72. <span class="item second-group">12</span>
  73. <span class="item second-group">13</span>
  74. <span class="item second-group">14</span>
  75. <span class="item second-group">15</span>
  76. <span class="item second-group">16</span>
  77. <span class="item second-group">17</span>
  78. <span class="item second-group">18</span>
  79. <span class="item second-group">19</span>
  80. <span class="item second-group">20</span>
  81. </div>
  82. <span>我是验证:only-of-type设置干扰项1</span><br />
  83. <strong>我也会被:only-of-type变绿</strong><br />
  84. <span>我是验证:only-of-type设置干扰项2</span>
  85. </body>
  86. </html>

demo 运行效果图:

  • 疑问: 分组匹配是不是只能根据元素进行分组? 我尝试用类进行分组(标签都用div), 似乎并没有起作用.

3.3 表单伪类: 根据表单控件状态特征进行选择

序号 选择器 描述
1 :active 向被激活的元素添加样式
2 :focus 向拥有键盘输入焦点的元素添加样式
3 :hover 当鼠标悬浮在元素上方时,向元素添加样式
4 :link 向未被访问的链接添加样式
5 :visited 向已被访问的链接添加样式
6 :root 根元素,通常是html
7 :empty 选择没有任何子元素的元素(含文本节点)
8 :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>伪类选择器-结构伪类-分组匹配demo</title>
  7. <style>
  8. section {
  9. margin-bottom: 10px;
  10. }
  11. section > label:first-child {
  12. display: inline-block;
  13. width: 80px;
  14. text-align: right;
  15. margin-right: 10px;
  16. }
  17. input {
  18. padding: 1px 5px;
  19. }
  20. /* 1.使用:active让所有控件被点按时背景色变成浅黄色 */
  21. fieldset input:active,
  22. fieldset textarea:active {
  23. background-color: lightyellow;
  24. }
  25. /* 2.使用:focus让当前获取到焦点的控件字体变红 */
  26. fieldset input:focus,
  27. fieldset textarea:focus {
  28. color: red;
  29. outline: none;
  30. }
  31. /* 3.使用:hover使鼠标进入单选框时, 鼠标变成点击手势 */
  32. input[type="radio"]:hover {
  33. cursor: pointer;
  34. }
  35. /* 4.使用:link把未被访问的链接字体改为红色 */
  36. a:link {
  37. color: red;
  38. }
  39. /* 5.使用:visited把已访问过的链接字体改为绿色 */
  40. a:visited {
  41. color: green;
  42. }
  43. /* 6.使用:root把根元素(html元素)的背景色设置为亮绿色 */
  44. /* fieldset:root {
  45. background-color: lightgreen;
  46. } */
  47. /* 使用:empty把空文本域的背景色设置为浅粉色 */
  48. fieldset textarea:empty {
  49. background: lightpink;
  50. }
  51. /* 7.使用:not()把不是第一项和最后一项的section中的label的背景色设置为小麦色 */
  52. fieldset
  53. section:not(:first-of-type):not(:last-of-type)
  54. label:first-of-type {
  55. background-color: wheat;
  56. }
  57. /* 8.使用:checked把被选中的选项项字体加粗 */
  58. fieldset input[type="radio"]:checked + label,
  59. fieldset select > option:checked {
  60. font-weight: bold;
  61. }
  62. /* 9.把必填项的input框的背景色变浅绿色 */
  63. fieldset input:required {
  64. background-color: lightgreen;
  65. }
  66. </style>
  67. </head>
  68. <body>
  69. <fieldset>
  70. <legend>用户注册</legend>
  71. <section id="username-section">
  72. <label for="username">用户名:</label>
  73. <input
  74. type="text"
  75. name="username"
  76. id="username"
  77. required
  78. autofocus
  79. value="zhangsan"
  80. placeholder="你的登录账号"
  81. />
  82. </section>
  83. <section>
  84. <label for="email">邮箱:</label>
  85. <input
  86. type="email"
  87. name="email"
  88. id="email"
  89. required
  90. value="zhangsan@qq.com"
  91. placeholder="你的邮箱"
  92. />
  93. </section>
  94. <section>
  95. <label for="realname">姓名:</label>
  96. <input
  97. type="text"
  98. name="realname"
  99. id="realname"
  100. required
  101. value="张三"
  102. placeholder="你的姓名"
  103. />
  104. </section>
  105. <section>
  106. <label for="sex_0">性别:</label>
  107. <input type="radio" name="sex" id="sex_2" value="2" /><label for="sex_2"
  108. >保密</label
  109. >
  110. <input type="radio" name="sex" id="sex_0" value="0" checked /><label
  111. for="sex_0"
  112. ></label
  113. >
  114. <input type="radio" name="sex" id="sex_1" value="1" /><label for="sex_1"
  115. ></label
  116. >
  117. </section>
  118. <section>
  119. <label for="introduce">自我介绍:</label>
  120. <textarea name="introduce" id="introduce" cols="30" rows="5"></textarea>
  121. </section>
  122. <section>
  123. <label for="from">来自:</label>
  124. <select name="from" id="from">
  125. <option value="南宁" selected>南宁</option>
  126. <option value="柳州">柳州</option>
  127. <option value="桂林">桂林</option>
  128. </select>
  129. </section>
  130. </fieldset>
  131. <p><a href="http://">我是未被点击的链接</a></p>
  132. <p><a href="http://www.baidu.com">我是被点击过的链接</a></p>
  133. </body>
  134. </html>

demo 运行效果图:

疑问: 使用:root 设置<html>元素的背景色, 似乎没有成功, 是不是<html>元素的样式设置是有限制的, 并不是所有的样式都能设置?

4. 个人心得

  • 这一节课真是内容满满, 使用选择器就像魔术师操纵控制各种道具一样.
  • 个人的理解, 简单选择器是根据元素的标签和属性的角度去查找元素, 类似根据姓氏和信息去查找某些/类人. 如: 张姓(对比标签选择器), 家住南宁(对比属性选择器)的人; 李姓(对比标签选择器), 身份证号是 xxxx(对比 ID 选择器)的人等.
  • 上下文选择器, 则从另外一个角度, 即从 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