123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html>
- <head>
- <style type="text/css">
- #parent {
- background-color: green;
- }
- #first-child {
- height: 20px;
- }
- #last-child {
- margin-top: -20px;
- margin-bottom: -30px;
- }
- #separator {
- height: 20px;
- margin-top: 70px;
- background-color: green;
- }
- </style>
- </head>
- <body>
- <div id="parent">
- <div id="first-child"></div>
- <div id="last-child"></div>
- </div>
- <div id="separator"></div>
- </body>
- </html>
|