https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4155e54da47ada1c49483446573fbcbe7989abb2 authored by Marcos Cáceres on 28 November 2018, 05:11:04 UTC
Check that billingAddress gets nulled and redacted
Tip revision: 4155e54
flexbox_flow-column-reverse-wrap-ref.html
<!DOCTYPE html>
<title>flexbox | flex-flow: column-reverse wrap</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
	background: blue;
	padding-top: 1em;
	margin: 1em 0;
	border: 1px solid black;
	width: 20em;
	height: 7em;
}
span {
	background: white;
	margin: 1em;
	width: 8em;
	height: 1.5em;
	float: left;
}
</style>

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