9_权重值2.html 630 B

1234567891011121314151617181920212223242526272829
  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. /* .a{
  9. color: red !important;
  10. font-size: 40px !important;
  11. } */
  12. #id1{
  13. color: blue;
  14. font-size: 80px;
  15. }
  16. /* span{
  17. color: blue;
  18. }
  19. *{
  20. color: red;
  21. } */
  22. </style>
  23. </head>
  24. <body>
  25. <div style="color: aquamarine;" class="a" id="id1">hello</div>
  26. <div class="b a">world</div>
  27. <span>你好</span>
  28. </body>
  29. </html>