29_子代选择器.html 779 B

123456789101112131415161718192021222324252627282930313233343536
  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. .box1{
  9. width: 400px;
  10. height: 400px;
  11. background-color: red;
  12. }
  13. .box2{
  14. width: 300px;
  15. height: 300px;
  16. background-color: blue;
  17. }
  18. .box3{
  19. width: 200px;
  20. height: 200px;
  21. background-color: green;
  22. }
  23. /* 子代选择器 */
  24. .box1 > div{
  25. background-color: yellow;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box1">
  31. <div class="box2">
  32. <div class="box3"></div>
  33. </div>
  34. </div>
  35. </body>
  36. </html>