blob: 319568d1dab348a84faa89b019574a1183f871eb [file]
<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>