| <html> | |
| <style> | |
| #green { | |
| background-color: green; | |
| min-height: 50px; | |
| margin-bottom: 20px; | |
| margin-top: 20px; | |
| } | |
| #red { | |
| margin-bottom: 50px; | |
| } | |
| #yellow { | |
| background-color: yellow; | |
| height: 50px; | |
| width: 50px; | |
| } | |
| </style> | |
| <body> | |
| <div id=green> | |
| <div id=red></div> | |
| </div> | |
| <div id=yellow></div> | |
| </body> | |
| </html> |