12345678910111213141516171819 |
- <!DOCTYPE html>
- <html>
- <head>
- <style type="text/css">
- #separator, #spacer, #first-child {
- height: 20px;
- }
- #separator, #first-child {
- background-color: green;
- }
- </style>
- </head>
- <body>
- <div id="separator"></div>
- <div id="spacer"></div>
- <div id="first-child"></div>
- </body>
- </html>
|