多类名的使用场景.html 602 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. .red {
  9. /* 背景颜色 */
  10. background-color: red;
  11. }
  12. .green {
  13. /* 背景颜色 */
  14. background-color: green;
  15. }
  16. .width {
  17. width: 100px;
  18. height: 100px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="red width"></div>
  24. <div class="green width"></div>
  25. <div class="red width"> </div>
  26. </body>
  27. </html>