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

1234567891011121314151617181920212223242526272829303132
  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. #div1{
  10. background: green;
  11. }
  12. div{
  13. background: red;
  14. }
  15. .aa{
  16. background: blue;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <!-- css选择器的优先级
  22. style > id选择器 > class选择器 > 标签选择器
  23. -->
  24. <div id="div1" class="aa" style="background:pink">
  25. 你好 哈哈哈
  26. </div>
  27. </body>
  28. </html>