| <style> | |
| .float { | |
| float: left; | |
| width: 100%; | |
| height: 50px; | |
| background-color: green; | |
| } | |
| .content { | |
| clear: both; | |
| margin-left: -1px; | |
| } | |
| </style> | |
| <div style="width: 100px;"> | |
| <div class=float></div> | |
| <div class=content>PASS if this text is below the green box</div> | |
| </div> |