index.html 598 B

12345678910111213141516171819202122232425262728293031
  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. .box {
  9. width: 100px;
  10. height: 400px;
  11. background: black;
  12. }
  13. .parent {
  14. width: auto;
  15. height: auto;
  16. background: red;
  17. }
  18. .child {
  19. width: 400px;
  20. height: 200px;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="box">
  26. <div class="parent">
  27. <div class="child"></div>
  28. </div>
  29. </div>
  30. </body>
  31. </html>