1
0
Fork 0
firefox/testing/web-platform/tests/css/css-flexbox/flexbox_box-clear-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
436 B
HTML

<!DOCTYPE html>
<title>flexbox | cleared box</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
#float {
background: #3366cc;
padding: 1em;
float: left;
}
#flex {
background: #ffcc00;
padding: 2em;
clear: both;
}
div div {
background: pink;
height: 4em;
display: inline-block;
}
</style>
<div id="float">filler</div>
<div id="flex">
<div>Yellow box should be below the blue box</div>
</div>