| <!DOCTYPE html> | |
| <style> | |
| .long { | |
| width: 200px; | |
| height: 50px; | |
| background-color: blue; | |
| } | |
| .short { | |
| width: 50px; | |
| height: 50px; | |
| background-color: green; | |
| } | |
| </style> | |
| <div class=long></div> | |
| <div class=short></div> | |
| <div class=short></div> | |
| <div class=long></div> |