blob: 240c74b7523c633472b89e0794c0c4cdb1b91e06 [file]
<style>
.float {
float: left;
width: 100%;
height: 50px;
background-color: green;
}
.flex {
display: flex;
margin-left: -1px;
}
</style>
<div style="width: 100px;">
<div class=float></div>
<div class=flex>PASS if this text is below the green box</div>
</div>