https://github.com/web-platform-tests/wpt
Raw File
Tip revision: cd5bb894656e15405f1ab638cda9b24608e19f86 authored by Geoffrey Sneddon on 30 April 2018, 13:10:40 UTC
fixup! Fix #2669: Add alternate_hosts
Tip revision: cd5bb89
flexbox_item-clear-ref.html
<!DOCTYPE html>
<title>flexbox | cleared item</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
#float {
	background: #3366cc;
	padding: 1em;
	float: left;
}
#flex {
	background: #ffcc00;
	overflow: hidden;
}
div div {
	margin: 2em;
	height: 4em;
	clear: both;
}
</style>

<div id="float">damer</div>

<div id="flex">
	<div>Yellow box should be to the right of the blue box, and
		never below</div>
</div>
back to top