Blogger Information
Blog 28
fans 0
comment 0
visits 21913
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
研究‘css选择器’的妙用
暝皑祯π_π
Original
615 people have browsed it

选择器

-css 选择器规定了 css 规则会被应用到那些元素上

简单选择器

-1.通配选择器:选择所有元素,不区分类型
-2.类选择器:也可以叫属性选择器,根据元素的class的属性进行匹配
-3.群组选择器:可以同时选择器多个不同类型的元素, 通过用“ , ”的方式连接
-4.id选择器:按照 id 属性选择一个与之匹配的元素。需要注意的是,一个文档中,每个 ID 属性都应当是唯一的
-5.元素选择器:根据元素的标签名进行匹配

代码示例

上下文选择器

元素的四种角色

-祖先元素:拥有子元素,孙元素等所有层级的后代元素
-父级元素:仅拥有子元素层级的元素
-后代元素:与其它层级元素一起拥有共同祖先元素
-子级元素:与其它同级元素一起拥有共同父级元素

四种上下文选择器

序号 选择器 操作符 描述 举例
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>Document</title>
  7. <style>
  8. /* 后代选择器 */
  9. div span {
  10. display: block;
  11. /* color: teal; */
  12. border: 1px solid red;
  13. }
  14. /* 父子选择器 */
  15. div > ul {
  16. display: block;
  17. /* color: tomato; */
  18. border: 1px solid red;
  19. }
  20. /* 同级相邻选择器 */
  21. .d + .e {
  22. color: yellowgreen;
  23. }
  24. /* 同级所有选择器 */
  25. .d ~ .l {
  26. color: red;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div>
  32. <span><p>总理莫迪:印度抗击疫情为全球树立榜样</p></span>
  33. <span>频频变脸,美国为何改口接受中国标准口罩?</span>
  34. <span>胡锡进:攻击蔡依林,台湾绿营舆论凸显蝇营狗苟</span>
  35. </div>
  36. <br />
  37. <div>
  38. <ul class="a">
  39. <li class="d">深圳南山最高5500万豪宅半天售罄 "喝茶费"重现江湖</li>
  40. <li class="e">北方第三城之争:今年或明年郑州有望取代青岛</li>
  41. <li class="g">两个多月后,湖北这个数字终于是零了</li>
  42. <li class="h">国务院要求北京上海广州等城市加强病毒检测</li>
  43. <li class="j">武汉解封倒计时,重启途中的人与城</li>
  44. <li class="l">两武汉将“解封” !究竟解什么?</li>
  45. </ul>
  46. </div>
  47. </body>
  48. </html>

伪类选择器

-学习之前,先分析上下文选择器的局限性,例如选择同一个父级下的第二个子元素,就没那么简单
-而伪类就正好弥补了上下文选择器的短板, 所以伪类,大多数是基于文档中元素结构的
-: 本意是假的,不存在的意思, 这里是特指, 不需要在元素上添加额外的属性来获取元素
-: 暗指伪类的级别, 仍然是属于”class”级别, 仍然属于属性选择器范畴,级别高于元素选择器
结构伪类

不分组匹配

序号 选择器 描述 举例
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. <!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. .container {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. border: 1px solid red;
  13. grid-template-columns: repeat(4, 1fr);
  14. gap: 5px;
  15. }
  16. .box {
  17. font-size: 2rem;
  18. background-color: lightskyblue;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. /* 使用first-child时,为避免设置其他元素,要指定它的父级 */
  24. /* 选择第一个元素 */
  25. .container > :first-child {
  26. background-color: red;
  27. }
  28. /* 选择最后一个元素 */
  29. .container > :last-child {
  30. background-color: salmon;
  31. }
  32. /* 选择器第"n"个 元素 */
  33. /* "n"可以是表达式 */
  34. /* "n"的索引时从零开始计算 */
  35. .container > :nth-child(4) {
  36. background-color: springgreen;
  37. </style>
  38. </head>
  39. <body>
  40. <div class="container">
  41. <div class="box">1</div>
  42. <div class="box">2</div>
  43. <div class="box">3</div>
  44. <div class="box">4</div>
  45. <div class="box">5</div>
  46. <div class="box">6</div>
  47. <div class="box">7</div>
  48. <div class="box">8</div>
  49. <div class="box">9</div>
  50. <div class="box">10</div>
  51. <div class="box">11</div>
  52. <div class="box">12</div>
  53. </div>
  54. </body>
  55. </html>

分组匹配

序号 选择器 描述 举例
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. /* 选择第一个元素 */
  9. span:first-of-type {
  10. background-color: springgreen;
  11. }
  12. /* 选择最后一个元素 */
  13. li:last-of-type {
  14. background-color: wheat;
  15. }
  16. /* 选择第n个元素 */
  17. span:nth-of-child(4) {
  18. background-color: springgreen;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div>
  24. <span><p>总理莫迪:印度抗击疫情为全球树立榜样</p></span>
  25. <span>频频变脸,美国为何改口接受中国标准口罩?</span>
  26. <span>胡锡进:攻击蔡依林,台湾绿营舆论凸显蝇营狗苟</span>
  27. </div>
  28. </body>
  29. </html>

总结

-选择器的作用就是快速的在一个文档中找到你要找的其中一个或者多个元素,
-然后通过css的规则进行添加样式。
-注意表达式的应用

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