blob: 2b0242a6275bcc0fba99e7259fd5e1ccf4e1dd02 [file] [edit]
<!DOCTYPE html>
<style>
body {
margin: 0;
font: 20px/1 Ahem;
}
.flex {
display: flex;
}
#upper {
background: yellow;
height: 1em;
}
#lower {
background: green;
}
</style>
<div id=upper></div>
<div class=flex>
<div id=lower>TEST CASE</div>
</div>