1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html>
- <head>
- <style type="text/css">
- #separator {
- height: 40px;
- background-color: green;
- }
- #first-child {
- height: 40px;
- margin-top: -10px;
- background-color: blue;
- }
- #parent {
- margin-top: -20px;
- }
- </style>
- </head>
- <body>
- <div id="separator"></div>
- <div id="parent">
- <div id="first-child"></div>
- </div>
- </body>
- </html>
|