博客列表 >选择器权重与伪类选择器

选择器权重与伪类选择器

P粉150142745
P粉150142745原创
2022年03月28日 11:23:32365浏览

选择器权重

  1. 规则: 将任何一个"选择器"视为由:`id,class,tag`组成的 3 位整数
  2. 当某个位置出现相应选择器类型时,将该位置置`1`即可
  3. id: 千位class: 百位 tag: 个位
  4. <!DOCTYPE html>
  5. <html lang="en">
  6. <head>
  7. <meta charset="UTF-8" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  10. <title>Document</title>
  11. </head>
  12. <body>
  13. <h3>Hello</h3>
  14. <div class="hello">Hello world</div>
  15. </body>
  16. <style>
  17. h3 {
  18. color: blueviolet;
  19. }
  20. /* 0,0,1 */
  21. body h3 {
  22. color: black;
  23. }
  24. /* 0,0,2 */
  25. /* 0,0,1<0,0,2 */
  26. .hello {
  27. color: rgb(33, 223, 26);
  28. }
  29. /* 0,1,0 */
  30. div.hello {
  31. color: blue;
  32. }
  33. /* 0,1,1
  34. 0,1,0<0,1,1 */
  35. </style>
  36. </html>

实例演示常用伪类选择器,并写出参数计算过程

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <ul class="list">
  11. <li>item1</li>
  12. <li>item2</li>
  13. <li>item3</li>
  14. <li>item4</li>
  15. <li>item5</li>
  16. <li>item6</li>
  17. <li>item7</li>
  18. <li>item8</li>
  19. </ul>
  20. </body>
  21. <style>
  22. /* 公式: `:nth-of-type(an+b)` */
  23. /* 匹配一个: `a = 0` */
  24. .list > :nth-of-type(2) {
  25. background-color: rgb(223, 19, 212);
  26. }
  27. /* 匹配一组: `a = [1]`;'n=[0, 1, 2,...]'' */
  28. .list > :nth-of-type(n + 4) {
  29. background-color: rgb(131, 223, 235);
  30. }
  31. </style>
  32. </html>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议