https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dc4d765410fee7b5e4b0d638c12e881a806f55a8 authored by Anne van Kesteren on 05 April 2018, 13:53:52 UTC
add scenario from smaug
Tip revision: dc4d765
flexbox_wrap-reverse-ref.html
<!DOCTYPE html>
<title>flexbox | flex-wrap: wrap</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;
	width: 20em;
}
span {
	background: white;
	margin: 1em;
	width: 8em;
	display: block;
	float: left;
}
div::after {
	content: "";
	clear: both;
	display: block;
}
</style>

<div>
	<span>three</span>
	<span>four</span>
	<span>one</span>
	<span>two</span>
</div>
back to top