https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 685b869d99601c727e5edec3dd40f3714ce44ffc authored by Frédéric Wang on 14 March 2018, 11:33:05 UTC
Adjust MathML tests to Workaround WebKit's bug with document.fonts.ready
Tip revision: 685b869
flexbox_flow-row-wrap-reverse-ref.html
<!DOCTYPE html>
<title>flexbox | flex-flow: row wrap-reverse</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