7_权重值.html 514 B

123456789101112131415161718192021222324252627
  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. #id1{
  9. color: blue;
  10. }
  11. .b{
  12. color: yellow;
  13. }
  14. .a{
  15. color: red;
  16. }
  17. div{
  18. color: purple;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="a" id="id1">hello</div>
  24. <div class="a b">world</div>
  25. <div>你好</div>
  26. </body>
  27. </html>