1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html>
- <head>
- <style type="text/css">
- .separator {
- height: 20px;
- background-color: green;
- }
- #margin-only {
- height: 20px;
- }
- </style>
- </head>
- <body>
- <div class="separator"></div>
- <div id="margin-only"></div>
- <div class="separator"></div>
- </body>
- </html>
|