block-no-content-3a.html 426 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. #separator {
  6. height: 20px;
  7. background-color: green;
  8. }
  9. #parent {
  10. background-color: green;
  11. margin-top: 10px;
  12. }
  13. #first-child {
  14. margin-top: 20px;
  15. margin-bottom: 30px;
  16. }
  17. #last-child {
  18. height: 20px;
  19. margin-top: 15px;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div id="separator"></div>
  25. <div id="parent">
  26. <div id="first-child"></div>
  27. <div id="last-child"></div>
  28. </div>
  29. </body>
  30. </html>