3_选择器优先级.html 764 B

12345678910111213141516171819202122232425262728293031323334353637
  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. <style>
  9. h2{
  10. background: red;
  11. }
  12. #myh2{
  13. background: green;
  14. }
  15. .aa{
  16. background: pink;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <!-- 选择器的优先级
  22. style内联样式 > id选择器 > class类选择器 | 伪类 > 标签选择器
  23. 1000 100 10 1
  24. id的永远高于class
  25. #ul1 .aa{ 110
  26. }
  27. -->
  28. <h2 id="myh2" class="aa" >hahahahah</h2>
  29. </body>
  30. </html>