Files
servo/tests/wpt/css-tests/css-flexbox-1_dev/html/reference/flexbox_box-clear-ref.htm

28 lines
474 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | cleared box</title>
<link href="http://opera.com" rel="author" 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>
</head><body><div id="float">damer</div>
<div id="flex">
<div>Yellow box should be below the blue box</div>
</div>
</body></html>